No changes, just remove a left-over "#if 0".

Remove OSX-specific #if which was not used any more.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-09-10 16:51:09 +00:00
parent dc65fa8d5a
commit 8f8baa1de3

View File

@@ -472,9 +472,6 @@ int wxEntryReal(int& argc, wxChar **argv)
wxTRY wxTRY
{ {
#if 0 // defined(__WXOSX__) && wxOSX_USE_COCOA_OR_IPHONE
// everything done in OnRun using native callbacks
#else
// app initialization // app initialization
if ( !wxTheApp->CallOnInit() ) if ( !wxTheApp->CallOnInit() )
{ {
@@ -490,7 +487,7 @@ int wxEntryReal(int& argc, wxChar **argv)
} callOnExit; } callOnExit;
WX_SUPPRESS_UNUSED_WARN(callOnExit); WX_SUPPRESS_UNUSED_WARN(callOnExit);
#endif
// app execution // app execution
return wxTheApp->OnRun(); return wxTheApp->OnRun();
} }