the build options are now checked in the application, not the library which allows to avoid having to define wxGetBuildOptions()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-09 15:58:29 +00:00
parent 475ba112f4
commit e6e6fcc922
2 changed files with 14 additions and 21 deletions

View File

@@ -548,20 +548,14 @@ public:
#define IMPLEMENT_WX_THEME_SUPPORT
#endif
// define the build options object for the application which is compared to the
// one used for building the library on the program startup
#define WX_DEFINE_BUILDOPTS() \
const wxBuildOptions& wxGetBuildOptions() \
{ \
static wxBuildOptions s_buildOptions; \
return s_buildOptions; \
}
// Use this macro if you want to define your own main() or WinMain() function
// and call wxEntry() from there.
#define IMPLEMENT_APP_NO_MAIN(appname) \
WX_DEFINE_BUILDOPTS() \
wxApp *wxCreateApp() { return new appname; } \
wxApp *wxCreateApp() \
{ \
wxApp::CheckBuildOptions(wxBuildOptions()); \
return new appname; \
} \
wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
appname& wxGetApp() { return *(appname *)wxTheApp; }