bool wxDialogBase::EmulateButtonClickIfPresent(int id)
{
+#if wxUSE_BUTTON
wxButton *btn = wxDynamicCast(FindWindow(id), wxButton);
if ( !btn || !btn->IsEnabled() || !btn->IsShown() )
btn->GetEventHandler()->ProcessEvent(event);
return true;
+#else // !wxUSE_BUTTON
+ wxUnusedVar(id);
+ return false;
+#endif // wxUSE_BUTTON/!wxUSE_BUTTON
}
bool wxDialogBase::IsEscapeKey(const wxKeyEvent& event)