Conditional compilation fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3695,7 +3695,13 @@ wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id),
|
|||||||
#else // !wxUSE_OWNER_DRAWN
|
#else // !wxUSE_OWNER_DRAWN
|
||||||
// we may still have owner-drawn buttons internally because we have to make
|
// we may still have owner-drawn buttons internally because we have to make
|
||||||
// them owner-drawn to support colour change
|
// them owner-drawn to support colour change
|
||||||
wxControl *item = wxDynamicCast(FindItem(id), wxButton);
|
wxControl *item =
|
||||||
|
# if wxUSE_BUTTON
|
||||||
|
wxDynamicCast(FindItem(id), wxButton)
|
||||||
|
# else
|
||||||
|
NULL
|
||||||
|
# endif
|
||||||
|
;
|
||||||
#endif // USE_OWNER_DRAWN
|
#endif // USE_OWNER_DRAWN
|
||||||
|
|
||||||
if ( item )
|
if ( item )
|
||||||
|
Reference in New Issue
Block a user