[Monodevelop-patches-list] r2385 - in trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn: . Gui

Chris Toshok toshok at mono-cvs.ximian.com
Wed Mar 23 18:05:59 EST 2005


Author: toshok
Date: 2005-03-23 18:05:58 -0500 (Wed, 23 Mar 2005)
New Revision: 2385

Modified:
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs
Log:
2005-03-23  Chris Toshok  <toshok at ximian.com>

        * Gui/DebuggerThreadPad.cs, Gui/DebuggerStackTracePad.cs,
        Gui/DebuggerLocalsPad.cs: Add Id and DefaultPlacement properties.



Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-03-22 18:17:33 UTC (rev 2384)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-03-23 23:05:58 UTC (rev 2385)
@@ -1,3 +1,8 @@
+2005-03-23  Chris Toshok  <toshok at ximian.com>
+
+	* Gui/DebuggerThreadPad.cs, Gui/DebuggerStackTracePad.cs,
+	Gui/DebuggerLocalsPad.cs: Add Id and DefaultPlacement properties.
+
 2005-03-15  Chris Toshok  <toshok at ximian.com>
 
 	* Gui/DebuggerVariablePad.cs: never commit code before trying to

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs	2005-03-22 18:17:33 UTC (rev 2384)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs	2005-03-23 23:05:58 UTC (rev 2385)
@@ -16,6 +16,14 @@
 			}
 		}
 
+		public string Id {
+			get { return "MonoDevelop.SourceEditor.Gui.DebuggerLocalsPad"; }
+		}
+
+		public string DefaultPlacement {
+			get { return "Bottom"; }
+		}
+
 		public string Title {
 			get {
 				return "Locals";

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs	2005-03-22 18:17:33 UTC (rev 2384)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs	2005-03-23 23:05:58 UTC (rev 2385)
@@ -104,6 +104,14 @@
 			}
 		}
 
+		public string Id {
+			get { return "MonoDevelop.SourceEditor.Gui.DebuggeStackTracePad"; }
+		}
+
+		public string DefaultPlacement {
+			get { return "Bottom"; }
+		}
+
 		public string Title {
 			get {
 				return "Call Stack";

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs	2005-03-22 18:17:33 UTC (rev 2384)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs	2005-03-23 23:05:58 UTC (rev 2385)
@@ -123,6 +123,14 @@
 			}
 		}
 
+		public string Id {
+			get { return "MonoDevelop.SourceEditor.Gui.DebuggerThreadPad"; }
+		}
+
+		public string DefaultPlacement {
+			get { return "Bottom"; }
+		}
+
 		public string Title {
 			get {
 				return "Threads";




More information about the Monodevelop-patches-list mailing list