[Monodevelop-patches-list] r2651 - trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads
Chris Toshok
toshok at mono-cvs.ximian.com
Thu Jul 14 17:06:01 EDT 2005
Author: toshok
Date: 2005-07-14 17:06:00 -0400 (Thu, 14 Jul 2005)
New Revision: 2651
Modified:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs
Log:
don't use ITargetMemberInfo.Handle, as it doesn't exist anymore
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs 2005-07-14 02:27:23 UTC (rev 2650)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Gui/Pads/LocalsPad.cs 2005-07-14 21:06:00 UTC (rev 2651)
@@ -542,10 +542,12 @@
{
string icon = "";
+#if mdb_api_brokenness
if (member.Handle is PropertyInfo)
icon = Runtime.Gui.Icons.GetIcon ((PropertyInfo)member.Handle);
else if (member.Handle is FieldInfo)
icon = Runtime.Gui.Icons.GetIcon ((FieldInfo)member.Handle);
+#endif
return icon;
}
More information about the Monodevelop-patches-list
mailing list