correct error in wxHAVE_RAW_BITMAP definition: it shouldn't be defined at all if there is no raw bitmap support

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53914 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-06-01 20:17:04 +00:00
parent ddb57e4557
commit 23f3f8c2ac

View File

@@ -90,8 +90,10 @@
#define wxHAS_RAW_BITMAP #define wxHAS_RAW_BITMAP
#endif #endif
/* deprecated synonym which exists for compatibility only */ /* also define deprecated synonym which exists for compatibility only */
#define wxHAVE_RAW_BITMAP wxHAS_RAW_BITMAP #ifdef wxHAS_RAW_BITMAP
#define wxHAVE_RAW_BITMAP
#endif
#endif /* _WX_FEATURES_H_ */ #endif /* _WX_FEATURES_H_ */