author | llornkcor <llornkcor> | 2002-04-28 23:25:08 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-28 23:25:08 (UTC) |
commit | 9e2a233287309bdb6bcb228aaf075f8c14a1a687 (patch) (side-by-side diff) | |
tree | ee0cd57846f5ad51cf5c539b2ae1a841acd05de4 | |
parent | 3a7ed24bd010b3313b2260a35c68cfc3b49125b2 (diff) | |
download | opie-9e2a233287309bdb6bcb228aaf075f8c14a1a687.zip opie-9e2a233287309bdb6bcb228aaf075f8c14a1a687.tar.gz opie-9e2a233287309bdb6bcb228aaf075f8c14a1a687.tar.bz2 |
too much
-rw-r--r-- | core/apps/embeddedkonsole/TEWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp index 0cd7ed1..a111e18 100644 --- a/core/apps/embeddedkonsole/TEWidget.cpp +++ b/core/apps/embeddedkonsole/TEWidget.cpp @@ -980,25 +980,25 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e ) static_cast<QKeyEvent *>( e )->ignore(); return true; } if ( obj != this /* when embedded */ && obj != parent() /* when standalone */ ) return FALSE; // not us if ( e->type() == QEvent::Wheel) { QApplication::sendEvent(scrollbar, e); } #ifdef FAKE_CTRL_AND_ALT static bool control = FALSE; static bool alt = FALSE; - qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:"); +// qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:"); bool dele=FALSE; if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { QKeyEvent* ke = (QKeyEvent*)e; bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat(); switch (ke->key()) { case Key_F9: // let this be "Control" control = keydown; e = new QKeyEvent(QEvent::KeyPress, Key_Control, 0, ke->state()); dele=TRUE; break; case Key_F13: // let this be "Alt" alt = keydown; |