[Monodevelop-patches-list] r2217 - trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Mon Jan 31 19:29:19 EST 2005


Author: jluke
Date: 2005-01-31 19:29:19 -0500 (Mon, 31 Jan 2005)
New Revision: 2217

Modified:
   trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
Log:
disble for now


Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2005-01-31 23:57:55 UTC (rev 2216)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2005-02-01 00:29:19 UTC (rev 2217)
@@ -88,13 +88,15 @@
 			get { return underlineErrors; }
 			set {
 				underlineErrors = value;
+				/* still too broken to leave on
 				if (underlineErrors) {
 					points = new ArrayList ();
 					ps.ParseInformationChanged += (ParseInformationEventHandler) Runtime.DispatchService.GuiDispatch (new ParseInformationEventHandler (ParseChanged));
 				}
 				else {
-					ps.ParseInformationChanged -= (ParseInformationEventHandler) Runtime.DispatchService.GuiDispatch (new ParseInformationEventHandler (ParseChanged));
+					ps.ParseInformationChanged -= ParseChanged;
 				}
+				*/
 			}
 		}
 




More information about the Monodevelop-patches-list mailing list