summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2002-05-19 16:35:56 (UTC)
committer llornkcor <llornkcor>2002-05-19 16:35:56 (UTC)
commit602ff2a6f588584bf47afa6faae08ce60b49047f (patch) (unidiff)
treec319da92b22a1a81be1e52f5bf2fe855d646cae3 /core
parent7b05e648c1f7c29dee80d5731aacaab1a1b01b05 (diff)
downloadopie-602ff2a6f588584bf47afa6faae08ce60b49047f.zip
opie-602ff2a6f588584bf47afa6faae08ce60b49047f.tar.gz
opie-602ff2a6f588584bf47afa6faae08ce60b49047f.tar.bz2
don't send keyRegister QCop message if autoRepeated, and fixed spelling error
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/desktop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index d5c16b3..85ba160 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -191,13 +191,13 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e )
191 if ( !loggedin && ke->simpleData.keycode != Key_F34 ) 191 if ( !loggedin && ke->simpleData.keycode != Key_F34 )
192 return TRUE; 192 return TRUE;
193 bool press = ke->simpleData.is_press; 193 bool press = ke->simpleData.is_press;
194 194 bool autoRepeat = ke ->simpleData.is_auto_repeat;
195 if (!keyRegisterList.isEmpty()) 195 if (!keyRegisterList.isEmpty())
196 { 196 {
197 KeyRegisterList::Iterator it; 197 KeyRegisterList::Iterator it;
198 for( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) 198 for( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it )
199 { 199 {
200 if ((*it).getKeyCode() == ke->simpleData.keycode) 200 if ((*it).getKeyCode() == ke->simpleData.keycode && !autoRepeat)
201 QCopEnvelope((*it).getChannel().utf8(), (*it).getMessage().utf8()); 201 QCopEnvelope((*it).getChannel().utf8(), (*it).getMessage().utf8());
202 } 202 }
203 } 203 }