[Monodevelop-patches-list] r865 - in trunk/MonoDevelop: . build src/AddIns/DisplayBindings/SourceEditor/Gui
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue Feb 10 23:40:10 EST 2004
Author: tberman
Date: 2004-02-10 23:40:09 -0500 (Tue, 10 Feb 2004)
New Revision: 865
Modified:
trunk/MonoDevelop/autogen.sh
trunk/MonoDevelop/build/Makefile.am
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
Log:
build fixes + commenting out insight window
Modified: trunk/MonoDevelop/autogen.sh
===================================================================
--- trunk/MonoDevelop/autogen.sh 2004-02-10 22:56:35 UTC (rev 864)
+++ trunk/MonoDevelop/autogen.sh 2004-02-11 04:40:09 UTC (rev 865)
@@ -91,7 +91,7 @@
automake --add-missing --gnu $am_opt ||
{ echo "**Error**: automake failed."; exit 1; }
echo "Running autoconf ..."
-autoconf || { echo "**Error**: autoconf failed."; exit 1; }
+WANT_AUTOCONF="2.5" autoconf || { echo "**Error**: autoconf failed."; exit 1; }
conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
Modified: trunk/MonoDevelop/build/Makefile.am
===================================================================
--- trunk/MonoDevelop/build/Makefile.am 2004-02-10 22:56:35 UTC (rev 864)
+++ trunk/MonoDevelop/build/Makefile.am 2004-02-11 04:40:09 UTC (rev 865)
@@ -1 +1,3 @@
SUBDIRS = data AddIns
+
+all:
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2004-02-10 22:56:35 UTC (rev 864)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2004-02-11 04:40:09 UTC (rev 865)
@@ -73,7 +73,7 @@
completionWindow.ShowCompletionWindow ((char)key);
break;
case '(':
- try {
+ /*try {
InsightWindow insightWindow = new InsightWindow(this, ParentEditor.DisplayBinding.ContentName);
insightWindow.AddInsightDataProvider(new MethodInsightDataProvider());
@@ -81,9 +81,9 @@
} catch (Exception e) {
Console.WriteLine("EXCEPTION: " + e);
}
- break;
+ break;*/
case '[':
- try {
+ /*try {
InsightWindow insightWindow = new InsightWindow(this, ParentEditor.DisplayBinding.ContentName);
insightWindow.AddInsightDataProvider(new IndexerInsightDataProvider());
@@ -91,7 +91,7 @@
} catch (Exception e) {
Console.WriteLine("EXCEPTION: " + e);
}
- break;
+ break;*/
}
return base.OnKeyPressEvent (ref evnt);
More information about the Monodevelop-patches-list
mailing list