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

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sun Mar 28 23:42:22 EST 2004


Author: tberman
Date: 2004-03-28 23:42:22 -0500 (Sun, 28 Mar 2004)
New Revision: 1288

Modified:
   trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
   trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
Log:
open.
close.


Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog	2004-03-28 23:22:08 UTC (rev 1287)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog	2004-03-29 04:42:22 UTC (rev 1288)
@@ -1,3 +1,8 @@
+2004-03-29  Todd Berman  <tberman at sevenl.net>
+
+	* Gui/DebuggerVariablePad.cs: use AmbienceService to convert from
+	System.Int32 to int, etc.
+
 2004-03-24  John Luke  <jluke at cfl.rr.com>
 
 	* Makefile.am: addin was not being cp'd to build/AddIns/.

Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2004-03-28 23:22:08 UTC (rev 1287)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Gui/DebuggerVariablePad.cs	2004-03-29 04:42:22 UTC (rev 1288)
@@ -200,8 +200,9 @@
 
 		void add_object (ITargetObject obj, string name, TreeIter iter)
 		{
+			AmbienceService amb = (AmbienceService)MonoDevelop.Core.Services.ServiceManager.Services.GetService (typeof (AmbienceService));
 			store.SetValue (iter, 0, new GLib.Value (name));
-			store.SetValue (iter, 1, new GLib.Value (obj.Type.Name));
+			store.SetValue (iter, 1, new GLib.Value (amb.CurrentAmbience.GetIntrinsicTypeName (obj.Type.Name)));
 
 			switch (obj.Type.Kind) {
 			case TargetObjectKind.Fundamental:




More information about the Monodevelop-patches-list mailing list