diff options
author | nyamatongwe <unknown> | 2010-02-24 06:03:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-02-24 06:03:31 +0000 |
commit | 0caaffa311e8bb5000bce9fdac76d77c40988954 (patch) | |
tree | 60762ccfcc914223708fb9aecfe4cb20fbd23452 | |
parent | b725afd2ddc8ddeee5e29f3597c2605fb2dbddf4 (diff) | |
download | scintilla-mirror-0caaffa311e8bb5000bce9fdac76d77c40988954.tar.gz |
Extra bracketing to avoid GCC warnings.
-rw-r--r-- | win32/ScintillaWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index e3cf1ddc6..8cdf00507 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -2397,7 +2397,7 @@ bool ScintillaWin::Unregister() { bool ScintillaWin::HasCaretSizeChanged() { if ( ( (0 != vs.caretWidth) && (sysCaretWidth != vs.caretWidth) ) - || (0 != vs.lineHeight) && (sysCaretHeight != vs.lineHeight) + || ((0 != vs.lineHeight) && (sysCaretHeight != vs.lineHeight)) ) { return true; } |