#include "wx/app.h"
#include "wx/debug.h"
#include "wx/filefn.h"
+ #include "wx/log.h"
#endif
#include "wx/module.h"
// global vars
// ----------------------------------------------------------------------------
-wxApp * WXDLLEXPORT wxTheApp = NULL;
+WXDLLEXPORT wxApp *wxTheApp = NULL;
wxAppInitializerFunction
wxAppBase::m_appInitFn = (wxAppInitializerFunction)NULL;
abort();
}
-// Yield to other apps/messages
-bool WXDLLEXPORT wxYield()
-{
- // do nothing
- return TRUE;
-}
-
// Yield to other apps/messages
void WXDLLEXPORT wxWakeUpIdle()
{
int mb_argc = 0;
while (mb_argc < argc)
{
- wxTheApp->argv[mb_argc] = wxStrdup(wxConvLibc.cMB2WX(argv[mb_argc]));
+ wxTheApp->argv[mb_argc] = wxStrdup(wxConvLocal.cMB2WX(argv[mb_argc]));
mb_argc++;
}
wxTheApp->argv[mb_argc] = (wxChar *)NULL;
delete wxLog::SetActiveTarget(NULL);
#endif // wxUSE_LOG
}
+
+// vi:sts=4:sw=4:et