diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-13 11:19:27 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-13 11:19:27 -0230 |
commit | a7a10eeb5594fc2391471a052656b26dc2cf2e8c (patch) | |
tree | e1b2bd5db8071d56f6e5d132a8caaec961e012af /vsplugin/src/IceCsharpConfigurationDialog.cs | |
parent | Fixed bug 860 - close timeouts (diff) | |
download | ice-a7a10eeb5594fc2391471a052656b26dc2cf2e8c.tar.bz2 ice-a7a10eeb5594fc2391471a052656b26dc2cf2e8c.tar.xz ice-a7a10eeb5594fc2391471a052656b26dc2cf2e8c.zip |
Bug 4306 - vsplugin modifies projects when not enabled
Diffstat (limited to 'vsplugin/src/IceCsharpConfigurationDialog.cs')
-rw-r--r-- | vsplugin/src/IceCsharpConfigurationDialog.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vsplugin/src/IceCsharpConfigurationDialog.cs b/vsplugin/src/IceCsharpConfigurationDialog.cs index b4f44a67b58..2f7ab1fccd7 100644 --- a/vsplugin/src/IceCsharpConfigurationDialog.cs +++ b/vsplugin/src/IceCsharpConfigurationDialog.cs @@ -56,7 +56,7 @@ namespace Ice.VisualStudio if(_project != null)
{
includeDirList.Items.Clear();
- txtIceHome.Text = Util.getIceHomeRaw(_project);
+ txtIceHome.Text = Util.getIceHomeRaw(_project, false);
txtExtraOptions.Text = Util.getProjectProperty(_project, Util.PropertyNames.IceExtraOptions);
chkIcePrefix.Checked = Util.getProjectPropertyAsBool(_project, Util.PropertyNames.IcePrefix);
|