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

Chris Toshok toshok at mono-cvs.ximian.com
Fri Feb 25 16:40:12 EST 2005


Author: toshok
Date: 2005-02-25 16:40:12 -0500 (Fri, 25 Feb 2005)
New Revision: 2272

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

        * Gui/DebuggerVariablePad.cs: track martin's debugger changes.



Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-02-24 19:04:11 UTC (rev 2271)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-02-25 21:40:12 UTC (rev 2272)
@@ -1,3 +1,7 @@
+2005-02-25  Chris Toshok  <toshok at ximian.com>
+
+	* Gui/DebuggerVariablePad.cs: track martin's debugger changes.
+
 2005-02-04  Chris Toshok  <toshok at ximian.com>
 
 	* DebuggerCommands.cs: Update so this compiles/works with new MD.

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2005-02-24 19:04:11 UTC (rev 2271)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2005-02-25 21:40:12 UTC (rev 2272)
@@ -149,7 +149,7 @@
 				return;
 			}
 
-			switch (obj.Type.Kind) {
+			switch (obj.Type.Type.Kind) {
 			case TargetObjectKind.Array:
 				ITargetArrayObject array = (ITargetArrayObject) obj;
 				try {
@@ -202,9 +202,9 @@
 		{
 			AmbienceService amb = (AmbienceService)MonoDevelop.Core.Services.ServiceManager.GetService (typeof (AmbienceService));
 			store.SetValue (iter, 0, new GLib.Value (name));
-			store.SetValue (iter, 1, new GLib.Value (amb.CurrentAmbience.GetIntrinsicTypeName (obj.Type.Name)));
+			store.SetValue (iter, 1, new GLib.Value (amb.CurrentAmbience.GetIntrinsicTypeName (obj.Type.Type.Name)));
 
-			switch (obj.Type.Kind) {
+			switch (obj.Type.Type.Kind) {
 			case TargetObjectKind.Fundamental:
 				object contents = ((ITargetFundamentalObject) obj).Object;
 				store.SetValue (iter, 2, new GLib.Value (contents.ToString ()));




More information about the Monodevelop-patches-list mailing list