author | ibotty <ibotty> | 2002-10-13 21:37:12 (UTC) |
---|---|---|
committer | ibotty <ibotty> | 2002-10-13 21:37:12 (UTC) |
commit | 49269558da49b0429e4b13f4ed8ac2b3ac4f3513 (patch) (unidiff) | |
tree | 799475cf2819088c12714258307ceb72652e6895 | |
parent | 5a6ecdac2e62708b55300ca6eef8441fea0a7b05 (diff) | |
download | opie-49269558da49b0429e4b13f4ed8ac2b3ac4f3513.zip opie-49269558da49b0429e4b13f4ed8ac2b3ac4f3513.tar.gz opie-49269558da49b0429e4b13f4ed8ac2b3ac4f3513.tar.bz2 |
added additional functionality (dont really know what anymore....)
-rw-r--r-- | noncore/apps/opie-console/widget_layer.cpp | 8 | ||||
-rw-r--r-- | noncore/apps/opie-console/widget_layer.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/noncore/apps/opie-console/widget_layer.cpp b/noncore/apps/opie-console/widget_layer.cpp index 6682708..e4b0ede 100644 --- a/noncore/apps/opie-console/widget_layer.cpp +++ b/noncore/apps/opie-console/widget_layer.cpp | |||
@@ -68,13 +68,13 @@ bool WidgetLayer::eventFilter( QObject *obj, QEvent *e ) | |||
68 | return true; | 68 | return true; |
69 | } | 69 | } |
70 | if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ ) | 70 | if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ ) |
71 | return FALSE; // not us | 71 | return false; // not us |
72 | 72 | ||
73 | #ifdef FAKE_CTRL_AND_ALT | 73 | #ifdef FAKE_CTRL_AND_ALT |
74 | static bool control = FALSE; | 74 | static bool control = false; |
75 | static bool alt = FALSE; | 75 | static bool alt = false; |
76 | // qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:"); | 76 | // qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:"); |
77 | bool dele=FALSE; | 77 | bool dele = false; |
78 | if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { | 78 | if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { |
79 | QKeyEvent* ke = (QKeyEvent*)e; | 79 | QKeyEvent* ke = (QKeyEvent*)e; |
80 | bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat(); | 80 | bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat(); |
diff --git a/noncore/apps/opie-console/widget_layer.h b/noncore/apps/opie-console/widget_layer.h index 1d96bf4..0c290f3 100644 --- a/noncore/apps/opie-console/widget_layer.h +++ b/noncore/apps/opie-console/widget_layer.h | |||
@@ -120,7 +120,7 @@ public: | |||
120 | * @param int value, how much the widget should scroll up (positive value) or down (negative value) | 120 | * @param int value, how much the widget should scroll up (positive value) or down (negative value) |
121 | */ | 121 | */ |
122 | virtual void scroll( int value ) = 0; | 122 | virtual void scroll( int value ) = 0; |
123 | 123 | ||
124 | 124 | ||
125 | virtual bool eventFilter( QObject *obj, QEvent *event ); | 125 | virtual bool eventFilter( QObject *obj, QEvent *event ); |
126 | signals: | 126 | signals: |