// Created: 10/13/99
// RCS-ID: $Id$
// Copyright: (c) David Webster
-// Licence: wxWindows licence
+// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
if (!::WinRegisterClass( vHab
{
vError = ::WinGetLastError(vHab);
sError = wxPMErrorToStr(vError);
- wxLogLastError(sError);
+ wxLogLastError(sError.c_str());
return FALSE;
}
return TRUE;
} // end of wxApp::RegisterWindowClasses
//
-// Cleans up any wxWindows internal structures left lying around
+// Cleans up any wxWidgets internal structures left lying around
//
void wxApp::CleanUp()
{
#endif
} // end of wxApp::~wxApp
-bool wxApp::Initialized()
-{
- if (GetTopWindow())
- return TRUE;
- else
- return FALSE;
-} // end of wxApp::Initialized
-
bool gbInOnIdle = FALSE;
void wxApp::OnIdle(