mail-archives/monodevelop-patches-list/2004-March/000895.html

99 строки
4.5 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1288 - in trunk/MonoDevelop/src/AddIns/DebuggerAddIn: . Gui
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1288%20-%20in%20trunk/MonoDevelop/src/AddIns/DebuggerAddIn%3A%20.%20Gui&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="000894.html">
<LINK REL="Next" HREF="000896.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1288 - in trunk/MonoDevelop/src/AddIns/DebuggerAddIn: . Gui</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1288%20-%20in%20trunk/MonoDevelop/src/AddIns/DebuggerAddIn%3A%20.%20Gui&In-Reply-To="
TITLE="[Monodevelop-patches-list] r1288 - in trunk/MonoDevelop/src/AddIns/DebuggerAddIn: . Gui">commit-watcher at mono-cvs.ximian.com
</A><BR>
<I>Sun Mar 28 23:42:22 EST 2004</I>
<P><UL>
<LI>Previous message: <A HREF="000894.html">[Monodevelop-patches-list] r1287 - in trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor: . CodeCompletion
</A></li>
<LI>Next message: <A HREF="000896.html">[Monodevelop-patches-list] r1289 - in trunk/MonoDevelop/src/Main/Base: . Gui/Pads
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#895">[ date ]</a>
<a href="thread.html#895">[ thread ]</a>
<a href="subject.html#895">[ subject ]</a>
<a href="author.html#895">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>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 &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">tberman at sevenl.net</A>&gt;
+
+ * Gui/DebuggerVariablePad.cs: use AmbienceService to convert from
+ System.Int32 to int, etc.
+
2004-03-24 John Luke &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">jluke at cfl.rr.com</A>&gt;
* 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:
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="000894.html">[Monodevelop-patches-list] r1287 - in trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor: . CodeCompletion
</A></li>
<LI>Next message: <A HREF="000896.html">[Monodevelop-patches-list] r1289 - in trunk/MonoDevelop/src/Main/Base: . Gui/Pads
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#895">[ date ]</a>
<a href="thread.html#895">[ thread ]</a>
<a href="subject.html#895">[ subject ]</a>
<a href="author.html#895">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>