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:
parent
64c794f682
commit
095b80e2b5
@ -3695,7 +3695,13 @@ wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id),
|
||||
#else // !wxUSE_OWNER_DRAWN
|
||||
// we may still have owner-drawn buttons internally because we have to make
|
||||
// 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
|
||||
|
||||
if ( item )
|
||||
|
Loading…
Reference in New Issue
Block a user