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

Chris Toshok toshok at mono-cvs.ximian.com
Wed Apr 6 19:49:40 EDT 2005


Author: toshok
Date: 2005-04-06 19:49:40 -0400 (Wed, 06 Apr 2005)
New Revision: 2432

Modified:
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
   trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/LocalsPad.cs
Log:
2005-04-06  Chris Toshok  <toshok at ximian.com>

	* Gui/LocalsPad.cs: wrap the using MonoDevelop.DebuggerVisualizers
	with #if NET_2_0.
	(LocalsPad.VisualizerActivate): comment out an unworking line for
	the time being.



Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-04-06 22:53:07 UTC (rev 2431)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-04-06 23:49:40 UTC (rev 2432)
@@ -1,9 +1,18 @@
 2005-04-06  Chris Toshok  <toshok at ximian.com>
 
+	* Gui/LocalsPad.cs: wrap the using MonoDevelop.DebuggerVisualizers
+	with #if NET_2_0.
+	(LocalsPad.VisualizerActivate): comment out an unworking line for
+	the time being.
+
+2005-04-06  Chris Toshok  <toshok at ximian.com>
+
 	* Gui/LocalsPad.cs: (LocalsPad.OnStoppedEvent): the CurrentFrame
 	field is of type StackFrame now, so move the cast to the
 	DebuggingService instead of the stackframe.
 
+	* Gui/StackTracePad.cs: same.
+
 	* Gui/ThreadPad.cs (ThreadPad.UpdateThread): just set the values
 	on the row, don't both comparing to the current value.
 

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/LocalsPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/LocalsPad.cs	2005-04-06 22:53:07 UTC (rev 2431)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/LocalsPad.cs	2005-04-06 23:49:40 UTC (rev 2432)
@@ -7,7 +7,9 @@
 using MonoDevelop.Gui;
 using MonoDevelop.Services;
 using Stock = MonoDevelop.Gui.Stock;
-//using MonoDevelop.DebuggerVisualizers;
+#if NET_2_0
+using MonoDevelop.DebuggerVisualizers;
+#endif
 
 using Mono.Debugger;
 using Mono.Debugger.Languages;
@@ -333,8 +335,9 @@
 			// VisualizerObjectSource used by this
 			// visualizer is loaded into the debuggee.
 			Type sourceType = Type.GetType (va_attr.VisualizerObjectSourceTypeName);
-			dbgr.LoadLibrary (dbgr.MainThread, sourceType.Assembly.Location);
 
+			//			dbgr.LoadLibrary (dbgr.MainThread, sourceType.Assembly.Location);
+
 			ITargetObject tobj = (ITargetObject)iters [selected_iter];
 			visualizer.Show (null, new TargetObjectProvider (tobj, sourceType.FullName));
 		}




More information about the Monodevelop-patches-list mailing list