[Monodevelop-patches-list] r2388 - in trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn: . Gui
Chris Toshok
toshok at mono-cvs.ximian.com
Thu Mar 24 16:58:03 EST 2005
Author: toshok
Date: 2005-03-24 16:58:02 -0500 (Thu, 24 Mar 2005)
New Revision: 2388
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
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml
Log:
2005-03-24 Chris Toshok <toshok at ximian.com>
* Gui/DebuggerStackTracePad.cs, Gui/DebuggerLocalsPad.cs,
Gui/DebuggerThreadPad.cs, MonoDevelopDebugger.addin.xml: fix the
pad ids.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-03-24 09:41:42 UTC (rev 2387)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2005-03-24 21:58:02 UTC (rev 2388)
@@ -1,5 +1,11 @@
2005-03-24 Chris Toshok <toshok at ximian.com>
+ * Gui/DebuggerStackTracePad.cs, Gui/DebuggerLocalsPad.cs,
+ Gui/DebuggerThreadPad.cs, MonoDevelopDebugger.addin.xml: fix the
+ pad ids.
+
+2005-03-24 Chris Toshok <toshok at ximian.com>
+
* MonoDevelopDebugger.addin.xml: Change all the namespaces to
MonoDevelop.Debugger.*
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs 2005-03-24 09:41:42 UTC (rev 2387)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerLocalsPad.cs 2005-03-24 21:58:02 UTC (rev 2388)
@@ -17,7 +17,7 @@
}
public string Id {
- get { return "MonoDevelop.SourceEditor.Gui.DebuggerLocalsPad"; }
+ get { return "MonoDevelop.Debugger.DebuggerLocalsPad"; }
}
public string DefaultPlacement {
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs 2005-03-24 09:41:42 UTC (rev 2387)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerStackTracePad.cs 2005-03-24 21:58:02 UTC (rev 2388)
@@ -105,7 +105,7 @@
}
public string Id {
- get { return "MonoDevelop.SourceEditor.Gui.DebuggeStackTracePad"; }
+ get { return "MonoDevelop.Debugger.DebuggerStackTracePad"; }
}
public string DefaultPlacement {
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs 2005-03-24 09:41:42 UTC (rev 2387)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerThreadPad.cs 2005-03-24 21:58:02 UTC (rev 2388)
@@ -124,7 +124,7 @@
}
public string Id {
- get { return "MonoDevelop.SourceEditor.Gui.DebuggerThreadPad"; }
+ get { return "MonoDevelop.Debugger.DebuggerThreadPad"; }
}
public string DefaultPlacement {
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml 2005-03-24 09:41:42 UTC (rev 2387)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml 2005-03-24 21:58:02 UTC (rev 2388)
@@ -15,9 +15,9 @@
</Extension>
<Extension path = "/SharpDevelop/Workbench/Pads">
- <Pad id = "MonoDevelop.Debugger.DebuggerLocalsPad" class = "MonoDevelop.Debugger.DebuggerLocalsPad"/>
+ <Pad id = "MonoDevelop.Debugger.DebuggerLocalsPad" class = "MonoDevelop.Debugger.DebuggerLocalsPad"/>
<Pad id = "MonoDevelop.Debugger.DebuggerStackTracePad" class = "MonoDevelop.Debugger.DebuggerStackTracePad"/>
- <Pad id = "MonoDevelop.SourceEditor.Gui.DebuggerThreadPad" class = "MonoDevelop.Debugger.DebuggerThreadPad"/>
+ <Pad id = "MonoDevelop.Debugger.DebuggerThreadPad" class = "MonoDevelop.Debugger.DebuggerThreadPad"/>
</Extension>
<Extension path = "/SharpDevelop/Workbench/Contexts/Debug">
More information about the Monodevelop-patches-list
mailing list