Author: cwittich Date: Thu May 28 14:01:35 2009 New Revision: 41170
URL: http://svn.reactos.org/svn/reactos?rev=41170&view=rev Log: remove debug messagebox
Modified: trunk/tools/reactosdbg/RosDBG/Settings.cs
Modified: trunk/tools/reactosdbg/RosDBG/Settings.cs URL: http://svn.reactos.org/svn/reactos/trunk/tools/reactosdbg/RosDBG/Settings.cs... ============================================================================== --- trunk/tools/reactosdbg/RosDBG/Settings.cs [iso-8859-1] (original) +++ trunk/tools/reactosdbg/RosDBG/Settings.cs [iso-8859-1] Thu May 28 14:01:35 2009 @@ -216,10 +216,7 @@ public static string Baudrate { get { return mProperties.Baudrate; } } public static Connect.ConnectionType SelectedConnType { get { return mProperties.SelectedConnType; } - set - { - MessageBox.Show(value.ToString()); - mProperties.SelectedConnType = value; } + set { mProperties.SelectedConnType = value; } }
public Settings()