author | llornkcor <llornkcor> | 2002-06-23 20:33:15 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-23 20:33:15 (UTC) |
commit | a4a53967e152ba595d315b2491bb78070c446ee2 (patch) (side-by-side diff) | |
tree | 7c8fc3f5ba089bb87362c221aa5b811cb6147b96 /core | |
parent | 682c35bee3ea3012ce0dfe70c531b87231d4fcf4 (diff) | |
download | opie-a4a53967e152ba595d315b2491bb78070c446ee2.zip opie-a4a53967e152ba595d315b2491bb78070c446ee2.tar.gz opie-a4a53967e152ba595d315b2491bb78070c446ee2.tar.bz2 |
security enhancement
-rw-r--r-- | core/apps/embeddedkonsole/TEWidget.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp index a111e18..6d5c6e9 100644 --- a/core/apps/embeddedkonsole/TEWidget.cpp +++ b/core/apps/embeddedkonsole/TEWidget.cpp @@ -1019,27 +1019,29 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e ) ke->ascii(), ke->state()|AltButton, ke->text()); dele=TRUE; } } } #endif if ( e->type() == QEvent::KeyPress ) { QKeyEvent* ke = (QKeyEvent*)e; actSel=0; // Key stroke implies a screen update, so TEWidget won't // know where the current selection is. - qDebug("key pressed is 0x%x",ke->key()); +// qDebug("key pressed is 0x%x",ke->key()); + if( ke->state() == ShiftButton && ke->key() == Key_Tab) { //lets hardcode this sucker - qDebug("key pressed 2 is 0x%x",ke->key()); + +// qDebug("key pressed 2 is 0x%x",ke->key()); emitText("\\"); // expose } else emit keyPressedSignal(ke); // expose ke->accept(); #ifdef FAKE_CTRL_AND_ALT if ( dele ) delete e; #endif return true; // stop the event } if ( e->type() == QEvent::Enter ) { QObject::disconnect( (QObject*)cb, SIGNAL(dataChanged()), this, SLOT(onClearSelection()) ); |