author | jeremy <jeremy> | 2002-02-15 21:29:03 (UTC) |
---|---|---|
committer | jeremy <jeremy> | 2002-02-15 21:29:03 (UTC) |
commit | a176c76090a3ba74f350d2066d6762c9b9a7eb3b (patch) (side-by-side diff) | |
tree | b2dd448bd0fa8bd3d1e1730b44427f5c2f5f052f | |
parent | b0768575b7bc1e4fe477d37a49cccc7e3d92bf85 (diff) | |
download | opie-a176c76090a3ba74f350d2066d6762c9b9a7eb3b.zip opie-a176c76090a3ba74f350d2066d6762c9b9a7eb3b.tar.gz opie-a176c76090a3ba74f350d2066d6762c9b9a7eb3b.tar.bz2 |
Added checking for an empty keyRegisterList for increased performance :)
-rw-r--r-- | core/launcher/desktop.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index ce99bad..a00fae2 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp @@ -188,13 +188,16 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e ) return TRUE; bool press = ke->simpleData.is_press; - KeyRegisterList::Iterator it; - for( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) + if (!keyRegisterList.isEmpty()) { - if ((*it).getKeyCode() == ke->simpleData.keycode) - QCopEnvelope((*it).getChannel().utf8(), (*it).getMessage().utf8()); + KeyRegisterList::Iterator it; + for( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) + { + if ((*it).getKeyCode() == ke->simpleData.keycode) + QCopEnvelope((*it).getChannel().utf8(), (*it).getMessage().utf8()); + } } - + if ( !keyboardGrabbed() ) { if ( ke->simpleData.keycode == Key_F9 ) { if ( press ) emit datebook(); @@ -228,12 +231,7 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e ) return TRUE; } } - /* - if ( ke->simpleData.keycode == 4096 ) { - QCopEnvelope e("QPE/VMemo", "toggleRecord()"); - return TRUE; - } - */ + if ( ke->simpleData.keycode == Key_F34 ) { if ( press ) emit power(); return TRUE; |