[Monodevelop-patches-list] r2195 - in trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor: . CodeCompletion
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Jan 30 20:52:09 EST 2005
Author: jluke
Date: 2005-01-30 20:52:08 -0500 (Sun, 30 Jan 2005)
New Revision: 2195
Modified:
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs
Log:
temporary fix
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2005-01-30 23:50:42 UTC (rev 2194)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2005-01-31 01:52:08 UTC (rev 2195)
@@ -1,3 +1,9 @@
+2005-01-30 Todd Berman <tberman at off.net>
+
+ * CodeCompletion/CompletionListWindow: comment out
+ UpdateDeclarationView in one place because it crashes
+ sometimes
+
2005-01-30 John Luke <john.luke at gmail.com>
* Gui/SourceEditorView.cs: only show completion if the
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs 2005-01-30 23:50:42 UTC (rev 2194)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs 2005-01-31 01:52:08 UTC (rev 2195)
@@ -153,7 +153,9 @@
void ListSizeChanged (object obj, SizeAllocatedArgs args)
{
- UpdateDeclarationView ();
+ // FIXME: crashes on System.Runtime.
+ // first line array out of bounds
+ //UpdateDeclarationView ();
}
protected override void OnSelectionChanged ()
More information about the Monodevelop-patches-list
mailing list