From 7a9076570c646048d825e8ac0add6ce42b56404f Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Wed, 20 Oct 2010 13:12:03 +0200 Subject: [PATCH] Fixed "TortoiseGit not found" message --- src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs b/src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs index 81adcf3806..5825d08223 100644 --- a/src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs +++ b/src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs @@ -44,7 +44,7 @@ namespace ICSharpCode.GitAddIn { string path = GetPathFromRegistry("ProcPath"); if (path == null) { - using (var dlg = new ToolNotFoundDialog("${res:AddIns.Git.TortoiseGitRequired}", "http://code.google.com/p/tortoisegit/")) { + using (var dlg = new ToolNotFoundDialog(StringParser.Parse("${res:AddIns.Git.TortoiseGitRequired}"), "http://code.google.com/p/tortoisegit/")) { dlg.ShowDialog(WorkbenchSingleton.MainWin32Window); } } else {