Browse Source

Fix argument exception when saving service reference properties.

pull/6/merge
Matt Ward 14 years ago
parent
commit
3d1e092b50
  1. 2
      src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ServiceReference/ServiceReferenceOptions.cs

2
src/Main/Base/Project/Src/Gui/Dialogs/ReferenceDialog/ServiceReference/ServiceReferenceOptions.cs

@ -15,7 +15,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Dialogs.ReferenceDialog.ServiceReference
} }
public static string SvcUtilPath { public static string SvcUtilPath {
get { return properties.Get<string>("SvcUtilPath", null); } get { return properties.Get<string>("SvcUtilPath", String.Empty); }
set { properties.Set("SvcUtilPath", value); } set { properties.Set("SvcUtilPath", value); }
} }
} }

Loading…
Cancel
Save