Fix harmless warning about unreachable statement when wxUSE_EXCEPTIONS==0.

This statement only needed when we do use exceptions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-08-28 12:37:16 +00:00
parent 1124c57a6d
commit ce9fa570f0

View File

@ -1674,9 +1674,9 @@ bool wxEvtHandler::SafelyProcessEvent(wxEvent& event)
}
}
}
#endif // wxUSE_EXCEPTIONS
return false;
#endif // wxUSE_EXCEPTIONS
}
bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)