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:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2016-10-06 03:10:46 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2016-10-06 03:10:46 +0300
commit7d2392972d9b1d3d85fd1d2e2180c912283ea324 (patch)
treedb0c68b1253c10571f2590560b1099f312fbe6f7 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs
parent000afa5078d8afcb00b009e8311137e7f9a33a08 (diff)
[Ide] Fix redundant log message
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs
index 0e376ec54d..8bc99078a3 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/OptionsDialog.cs
@@ -769,7 +769,7 @@ namespace MonoDevelop.Ide.Gui.Dialogs
ApplyChanges ();
} catch (Exception ex) {
LoggingService.LogError ("Error saving options changes", ex);
- MessageService.ShowError (GettextCatalog.GetString ("There was an error saving the changes"));
+ MessageService.ShowError (null, GettextCatalog.GetString ("There was an error saving the changes"), null, null, false);
}
StoreLastPanel ();