[Monodevelop-patches-list] r1856 - in trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor: . Gui
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue Jun 29 12:57:29 EDT 2004
Author: tberman
Date: 2004-06-29 12:57:29 -0400 (Tue, 29 Jun 2004)
New Revision: 1856
Modified:
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs
Log:
sigh.
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2004-06-29 16:54:33 UTC (rev 1855)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2004-06-29 16:57:29 UTC (rev 1856)
@@ -1,3 +1,8 @@
+2004-06-29 Todd Berman <tberman at off.net>
+
+ * Gui/SourceEditorDisplayBinding.cs: Removing that patch for now,
+ that was half-cooked.
+
2004-06-28 Todd Berman <tberman at off.net>
* Gui/SourceEditorDisplayBinding.cs: Add a FSW to monitor for external
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs 2004-06-29 16:54:33 UTC (rev 1855)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs 2004-06-29 16:57:29 UTC (rev 1856)
@@ -92,11 +92,11 @@
IEditable, IPositionable, IBookmarkOperations, IDebuggableEditor
{
- internal FileSystemWatcher fsw;
+ //internal FileSystemWatcher fsw;
internal SourceEditor se;
- void UpdateFSW (object o, EventArgs e)
+ /*void UpdateFSW (object o, EventArgs e)
{
if (ContentName == null || ContentName.Length == 0)
return;
@@ -128,7 +128,7 @@
if (e.ResponseId == ResponseType.Yes)
Load (ContentName);
((Gtk.Window)o).Hide ();
- }
+ }*/
public void ExecutingAt (int line)
{
@@ -167,9 +167,9 @@
PropertyService propertyService = (PropertyService) ServiceManager.GetService (typeof (PropertyService));
IProperties properties2 = ((IProperties) propertyService.GetProperty("MonoDevelop.TextEditor.Document.Document.DefaultDocumentAggregatorProperties", new DefaultProperties()));
properties2.PropertyChanged += new PropertyEventHandler (PropertiesChanged);
- fsw = new FileSystemWatcher ();
+ /* fsw = new FileSystemWatcher ();
fsw.Changed += new FileSystemEventHandler (OnFileChanged);
- UpdateFSW (null, null);
+ UpdateFSW (null, null);*/
}
public void JumpTo (int line, int column)
@@ -208,10 +208,10 @@
{
}
- public override void Dispose()
+ /*public override void Dispose()
{
fsw.Dispose ();
- }
+ }*/
void OnModifiedChanged (object o, EventArgs e)
{
More information about the Monodevelop-patches-list
mailing list