[Monodevelop-patches-list] r799 - trunk/MonoDevelop/src/Libraries/ICSharpCode.TextEditor/src/Gui/CompletionWindow
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Fri Feb 6 00:56:40 EST 2004
Author: tberman
Date: 2004-02-06 00:56:39 -0500 (Fri, 06 Feb 2004)
New Revision: 799
Modified:
trunk/MonoDevelop/src/Libraries/ICSharpCode.TextEditor/src/Gui/CompletionWindow/CompletionWindow.cs
Log:
im sick of seeing these writelines, we dont need them anymore anyway
Modified: trunk/MonoDevelop/src/Libraries/ICSharpCode.TextEditor/src/Gui/CompletionWindow/CompletionWindow.cs
===================================================================
--- trunk/MonoDevelop/src/Libraries/ICSharpCode.TextEditor/src/Gui/CompletionWindow/CompletionWindow.cs 2004-02-06 03:29:37 UTC (rev 798)
+++ trunk/MonoDevelop/src/Libraries/ICSharpCode.TextEditor/src/Gui/CompletionWindow/CompletionWindow.cs 2004-02-06 05:56:39 UTC (rev 799)
@@ -51,7 +51,6 @@
// ???
void ListKeyreleaseEvent(object sender, KeyReleaseEventArgs ex) {
if (ex.Event.Key == Gdk.Key.BackSpace) {
- //Console.WriteLine("Got BackSpace on key release");
new ICSharpCode.TextEditor.Actions.Backspace().Execute(control.ActiveTextAreaControl.TextArea);
if (insertLength > 0) {
--insertLength;
@@ -65,7 +64,6 @@
{
Gdk.Key key = ex.Event.Key;
char val = (char) key;
- Console.WriteLine("Got Press event ({0}). Key {1}", ex, key);
switch (key) {
case Gdk.Key.Shift_L:
case Gdk.Key.Shift_R:
@@ -75,13 +73,11 @@
return;
case Gdk.Key.Escape:
- Console.WriteLine("Got Escape");
LostFocusListView(null, null);
ex.RetVal = true;
return;
case Gdk.Key.BackSpace:
- Console.WriteLine("Got BackSpace on key press");
new ICSharpCode.TextEditor.Actions.Backspace().Execute(control.ActiveTextAreaControl.TextArea);
if (insertLength > 0) {
--insertLength;
@@ -92,7 +88,6 @@
break;
default:
- Console.WriteLine("Got key: {0}", key);
if (val != '_' && !Char.IsLetterOrDigit(val)) {
if (listView.Selection.CountSelectedRows() > 0) {
ActivateItem(null, null);
More information about the Monodevelop-patches-list
mailing list