Fixed errors in log strings.
This commit is contained in:
parent
7b58356fc7
commit
c70ca5fbff
|
@ -538,7 +538,7 @@ CServerProxy::keyRepeat()
|
||||||
static_cast<KeyModifierMask>(mask));
|
static_cast<KeyModifierMask>(mask));
|
||||||
if (id2 != static_cast<KeyID>(id) ||
|
if (id2 != static_cast<KeyID>(id) ||
|
||||||
mask2 != static_cast<KeyModifierMask>(mask))
|
mask2 != static_cast<KeyModifierMask>(mask))
|
||||||
LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2));
|
LOG((CLOG_DEBUG1 "key repeat translated to id=%d, mask=0x%04x", id2, mask2));
|
||||||
|
|
||||||
// forward
|
// forward
|
||||||
getClient()->keyRepeat(id2, mask2, count, button);
|
getClient()->keyRepeat(id2, mask2, count, button);
|
||||||
|
@ -561,7 +561,7 @@ CServerProxy::keyUp()
|
||||||
static_cast<KeyModifierMask>(mask));
|
static_cast<KeyModifierMask>(mask));
|
||||||
if (id2 != static_cast<KeyID>(id) ||
|
if (id2 != static_cast<KeyID>(id) ||
|
||||||
mask2 != static_cast<KeyModifierMask>(mask))
|
mask2 != static_cast<KeyModifierMask>(mask))
|
||||||
LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2));
|
LOG((CLOG_DEBUG1 "key up translated to id=%d, mask=0x%04x", id2, mask2));
|
||||||
|
|
||||||
// forward
|
// forward
|
||||||
getClient()->keyUp(id2, mask2, button);
|
getClient()->keyUp(id2, mask2, button);
|
||||||
|
|
Loading…
Reference in New Issue