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

Chris Toshok toshok at mono-cvs.ximian.com
Fri Feb 25 17:17:37 EST 2005


Author: toshok
Date: 2005-02-25 17:17:37 -0500 (Fri, 25 Feb 2005)
New Revision: 2273

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 (DebuggerVariablePad.add_data): fix
        warning.
        (DebuggerVariablePad.test_expand_row): Type.Type -> TypeInfo.Type.
        (DebuggerVariablePad.add_object): same.



Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-02-25 21:40:12 UTC (rev 2272)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog	2005-02-25 22:17:37 UTC (rev 2273)
@@ -1,5 +1,12 @@
 2005-02-25  Chris Toshok  <toshok at ximian.com>
 
+	* Gui/DebuggerVariablePad.cs (DebuggerVariablePad.add_data): fix
+	warning.
+	(DebuggerVariablePad.test_expand_row): Type.Type -> TypeInfo.Type.
+	(DebuggerVariablePad.add_object): same.
+
+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>

Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2005-02-25 21:40:12 UTC (rev 2272)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2005-02-25 22:17:37 UTC (rev 2273)
@@ -149,7 +149,7 @@
 				return;
 			}
 
-			switch (obj.Type.Type.Kind) {
+			switch (obj.TypeInfo.Type.Kind) {
 			case TargetObjectKind.Array:
 				ITargetArrayObject array = (ITargetArrayObject) obj;
 				try {
@@ -194,7 +194,7 @@
 
 		void add_data (ITargetObject obj, TreeIter parent)
 		{
-			TreeIter iter = store.Append (parent);
+			/*TreeIter iter = */ store.Append (parent);
 			iters.Add (parent, obj);
 		}
 
@@ -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.Type.Name)));
+			store.SetValue (iter, 1, new GLib.Value (amb.CurrentAmbience.GetIntrinsicTypeName (obj.TypeInfo.Type.Name)));
 
-			switch (obj.Type.Type.Kind) {
+			switch (obj.TypeInfo.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