compilation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -25,6 +25,8 @@
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/app.h"
|
||||
#include "wx/intl.h"
|
||||
#if wxUSE_LOG
|
||||
#include "wx/log.h"
|
||||
#endif // wxUSE_LOG
|
||||
@@ -470,10 +472,12 @@ wxFontMapper *wxConsoleAppTraitsBase::CreateFontMapper()
|
||||
|
||||
#endif // wxUSE_FONTMAP
|
||||
|
||||
#ifdef __WXDEBUG__
|
||||
bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString& msg)
|
||||
{
|
||||
return wxAppTraitsBase::ShowAssertDialog(msg);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool wxConsoleAppTraitsBase::HasStderr()
|
||||
{
|
||||
|
@@ -29,6 +29,8 @@
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/intl.h"
|
||||
#include "wx/log.h"
|
||||
#endif //WX_PRECOMP
|
||||
|
||||
#include "wx/timer.h"
|
||||
|
@@ -25,9 +25,12 @@
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/log.h"
|
||||
#include "wx/intl.h"
|
||||
#endif //WX_PRECOMP
|
||||
|
||||
#include "wx/apptrait.h"
|
||||
#include "wx/unix/execute.h"
|
||||
|
||||
// for waitpid()
|
||||
#include <sys/types.h>
|
||||
@@ -98,10 +101,10 @@ int wxConsoleAppTraits::GetOSVersion(int *verMaj, int *verMin)
|
||||
minor = -1;
|
||||
}
|
||||
|
||||
if ( majorVsn )
|
||||
*majorVsn = major;
|
||||
if ( minorVsn )
|
||||
*minorVsn = minor;
|
||||
if ( verMaj )
|
||||
*verMaj = major;
|
||||
if ( verMin )
|
||||
*verMin = minor;
|
||||
|
||||
return wxUNIX;
|
||||
}
|
||||
|
Reference in New Issue
Block a user