fix some (harmless) mingw32 4.3 warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -617,8 +617,8 @@ void ScintillaWX::UpdateSystemCaret() {
|
||||
|
||||
bool ScintillaWX::HasCaretSizeChanged() {
|
||||
#ifdef __WXMSW__
|
||||
if (( (0 != vs.caretWidth) && (sysCaretWidth != vs.caretWidth) )
|
||||
|| (0 != vs.lineHeight) && (sysCaretHeight != vs.lineHeight)) {
|
||||
if ( (vs.caretWidth && (sysCaretWidth != vs.caretWidth))
|
||||
|| (vs.lineHeight && (sysCaretHeight != vs.lineHeight)) ) {
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user