# HG changeset patch # User moel.mich # Date 1305477854 0 # Node ID 075a1822ef34e8d8f5b92d3193e6c4d507ef879f # Parent fb88cac4a9aa05ae4090f9e13214a1158c2264b6 Fixed Issue 219. diff -r fb88cac4a9aa -r 075a1822ef34 GUI/MainForm.cs --- a/GUI/MainForm.cs Sun May 15 16:20:30 2011 +0000 +++ b/GUI/MainForm.cs Sun May 15 16:44:14 2011 +0000 @@ -356,7 +356,11 @@ settings.Save(fileName); } catch (UnauthorizedAccessException) { MessageBox.Show("Access to the path '" + fileName + "' is denied. " + - "The current seetings could not be saved.", + "The current settings could not be saved.", + "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } catch (IOException) { + MessageBox.Show("The path '" + fileName + "' is not writeable. " + + "The current settings could not be saved.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }