use wxModule to ensure proper initialization order for wxStockGDIMac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40735 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
89579a60d7
commit
00f79e3471
@ -17,25 +17,33 @@
|
||||
#include "wx/gdicmn.h"
|
||||
#endif
|
||||
|
||||
#include "wx/module.h"
|
||||
#include "wx/mac/private.h"
|
||||
|
||||
class wxStockGDIMac: public wxStockGDI
|
||||
class wxStockGDIMac: public wxStockGDI, public wxModule
|
||||
{
|
||||
public:
|
||||
wxStockGDIMac();
|
||||
|
||||
virtual const wxFont* GetFont(Item item);
|
||||
|
||||
virtual bool OnInit();
|
||||
virtual void OnExit();
|
||||
|
||||
private:
|
||||
typedef wxStockGDI super;
|
||||
DECLARE_DYNAMIC_CLASS(wxStockGDIMac)
|
||||
};
|
||||
|
||||
static wxStockGDIMac gs_wxStockGDIMac_instance;
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxStockGDIMac, wxModule)
|
||||
|
||||
wxStockGDIMac::wxStockGDIMac()
|
||||
bool wxStockGDIMac::OnInit()
|
||||
{
|
||||
// Override default instance
|
||||
ms_instance = this;
|
||||
return true;
|
||||
}
|
||||
|
||||
void wxStockGDIMac::OnExit()
|
||||
{
|
||||
}
|
||||
|
||||
const wxFont* wxStockGDIMac::GetFont(Item item)
|
||||
|
Loading…
Reference in New Issue
Block a user