From fc14cfb25dee2edd238c12f007179afda112e235 Mon Sep 17 00:00:00 2001 From: "kirill.safonov" Date: Tue, 15 Nov 2011 11:04:34 +0400 Subject: [PATCH] system-dependent slashes --- .../com/intellij/openapi/vcs/actions/DiffActionExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java index a888c2503f68..6e43f994fb7a 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java @@ -99,7 +99,8 @@ public abstract class DiffActionExecutor { final Ref requestRef = new Ref(); final Task.Backgroundable task = new Task.Backgroundable(myProject, - VcsBundle.message("show.diff.progress.title.detailed", mySelectedFile.getPath()), true, BackgroundFromStartOption.getInstance()) { + VcsBundle.message("show.diff.progress.title.detailed", mySelectedFile.getPresentableUrl()), + true, BackgroundFromStartOption.getInstance()) { public void run(@NotNull ProgressIndicator indicator) { final VcsRevisionNumber revisionNumber = getRevisionNumber();