summaryrefslogtreecommitdiff
path: root/src/keyboardconfig.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-10 22:54:14 +0100
committerIra Rice <irarice@gmail.com>2009-02-10 20:29:13 -0700
commit4f038e895499fcf94fec168ef964f7de4f813113 (patch)
treee3f26d895923f4f14bf07f08cb1bac7cd23a32be /src/keyboardconfig.cpp
parentff1205d2b89f7f2273a32176c746f36836d7bfa9 (diff)
downloadMana-4f038e895499fcf94fec168ef964f7de4f813113.tar.gz
Mana-4f038e895499fcf94fec168ef964f7de4f813113.tar.bz2
Mana-4f038e895499fcf94fec168ef964f7de4f813113.tar.xz
Mana-4f038e895499fcf94fec168ef964f7de4f813113.zip
Whitespace fixes
Mainly removed trailing whitespace. Also small fix in header of recorder.cpp.
Diffstat (limited to 'src/keyboardconfig.cpp')
-rw-r--r--src/keyboardconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp
index b75a3c1c..1976e803 100644
--- a/src/keyboardconfig.cpp
+++ b/src/keyboardconfig.cpp
@@ -151,8 +151,8 @@ bool KeyboardConfig::hasConflicts()
for (j = i, j++; j < KEY_TOTAL; j++)
{
// Allow for item shortcut and emote keys to overlap, but no other keys
- if (!((((i >= KEY_SHORTCUT_1) && (i <= KEY_SHORTCUT_12)) &&
- ((j >= KEY_EMOTE_1) && (j <= KEY_EMOTE_12))) ||
+ if (!((((i >= KEY_SHORTCUT_1) && (i <= KEY_SHORTCUT_12)) &&
+ ((j >= KEY_EMOTE_1) && (j <= KEY_EMOTE_12))) ||
((i == KEY_TOGGLE_CHAT) && (j == KEY_OK))) &&
(mKey[i].value == mKey[j].value)
)