From: Vadim Zeitlin Date: Thu, 20 Jan 2005 10:07:07 +0000 (+0000) Subject: fixed typo in testing whether wxUSE_NATIVE_STATUSBAR should be set to 0 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6ee03aed390aa4af95b04afc20e9856bac43f604?ds=inline fixed typo in testing whether wxUSE_NATIVE_STATUSBAR should be set to 0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index 2cb52f978a..8c7f5f1ea0 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -1015,7 +1015,7 @@ #ifndef wxUSE_NATIVE_STATUSBAR # define wxUSE_NATIVE_STATUSBAR 0 #elif wxUSE_NATIVE_STATUSBAR -# if defined(__WXUNIVERSAL__) || !(defined(__WXMSW__) || !defined(__WXMAC__)) +# if defined(__WXUNIVERSAL__) || !(defined(__WXMSW__) || defined(__WXMAC__)) # undef wxUSE_NATIVE_STATUSBAR # define wxUSE_NATIVE_STATUSBAR 0 # endif