// global vars
// ----------------------------------------------------------------------------
-wxApp *wxTheApp = NULL;
+wxAppConsole *wxAppConsole::ms_appInstance = NULL;
wxAppInitializerFunction wxAppConsole::ms_appInitFn = NULL;
{
m_traits = NULL;
- wxTheApp = (wxApp *)this;
+ ms_appInstance = this;
#ifdef __WXDEBUG__
SetTraceMasks();
#endif // wxUSE_FONTMAP
+wxRendererNative *wxConsoleAppTraitsBase::CreateRenderer()
+{
+ // console applications don't use renderers
+ return NULL;
+}
+
#ifdef __WXDEBUG__
bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString& msg)
{