Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2010-06-04 16:11:15 +0400
committerLluis Sanchez <lluis@novell.com>2010-06-04 16:11:15 +0400
commit5cc1ef6fb94a982faa303388bcd524d364d0539d (patch)
tree31258484298e85c28a43a818a730152dc6d8781f /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
parentb76e60f33ab553ee4979c446425c464dd91b28e5 (diff)
* MonoDevelop.Ide.Commands/ToolsCommands.cs: Use the correct tag
model when parsing the working directory and command. svn path=/trunk/monodevelop/; revision=158465
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
index a8972e81dd..429749f285 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/ToolsCommands.cs
@@ -88,8 +88,8 @@ namespace MonoDevelop.Ide.Commands
void RunExternalTool (ExternalTools.ExternalTool tool, string argumentsTool)
{
- string commandTool = StringParserService.Parse (tool.Command);
- string initialDirectoryTool = StringParserService.Parse (tool.InitialDirectory);
+ string commandTool = StringParserService.Parse (tool.Command, IdeApp.Workbench.GetStringTagModel ());
+ string initialDirectoryTool = StringParserService.Parse (tool.InitialDirectory, IdeApp.Workbench.GetStringTagModel ());
//Execute tool
IProgressMonitor progressMonitor = IdeApp.Workbench.ProgressMonitors.GetRunProgressMonitor ();