diff options
| author | Bryan O'Sullivan <bos@lindenlab.com> | 2009-09-09 20:59:38 +0000 |
|---|---|---|
| committer | Bryan O'Sullivan <bos@lindenlab.com> | 2009-09-09 20:59:38 +0000 |
| commit | bc1df4b1db40f2cff98b4002f3f2d3a723c84be5 (patch) | |
| tree | 2b704bb91f4f039e241f40eb56b7d8352fffb8ba /indra/newview/llviewerkeyboard.cpp | |
| parent | 8bed0558f538f7dfb8875e418f20c9d9da93ae17 (diff) | |
Fix a whole bunch of compilation warnings reported by gcc 4.4
Diffstat (limited to 'indra/newview/llviewerkeyboard.cpp')
| -rw-r--r-- | indra/newview/llviewerkeyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerkeyboard.cpp b/indra/newview/llviewerkeyboard.cpp index 15c814829c..cc3d4ea594 100644 --- a/indra/newview/llviewerkeyboard.cpp +++ b/indra/newview/llviewerkeyboard.cpp @@ -683,7 +683,7 @@ BOOL LLViewerKeyboard::bindKey(const S32 mode, const KEY key, const MASK mask, c if (idx >=2 && idx <= 12) { U32 keyidx = ((mask<<16)|key); - (mRemapKeys[mode])[keyidx] = ((0<<16)|KEY_F1+(idx-1)); + (mRemapKeys[mode])[keyidx] = ((0<<16)|(KEY_F1+(idx-1))); return TRUE; } } |
