author | llornkcor <llornkcor> | 2002-06-23 20:25:42 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-23 20:25:42 (UTC) |
commit | 682c35bee3ea3012ce0dfe70c531b87231d4fcf4 (patch) (side-by-side diff) | |
tree | e450d9196fa4985c3f5aa2939725e148058e3e8c | |
parent | e611ad323de0bc155d52704545378c948bdbadfa (diff) | |
download | opie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.zip opie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.tar.gz opie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.tar.bz2 |
be a meanie and grab all keyboard inputs
-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index b3c0453..3ebe4c7 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp @@ -13,9 +13,9 @@ /* */ /* ---------------------------------------------------------------------- */ -/* */ +/* */ /* Ported Konsole to Qt/Embedded */ -/* */ +/* */ /* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */ -/* */ +/* */ /* -------------------------------------------------------------------------- */ @@ -38,4 +38,7 @@ int main(int argc, char* argv[]) QPEApplication a( argc, argv ); + QPEApplication::grabKeyboard(); // for CTRL and ALT + + qDebug("keyboard grabbed"); #ifdef FAKE_CTRL_AND_ALT qDebug("Fake Ctrl and Alt defined"); |