X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/452418c4b0763eb611432e84f077c9766e282057..80a779275ae04443c568dca919adb26cf6f5002c:/src/common/bmpbase.cpp?ds=sidebyside diff --git a/src/common/bmpbase.cpp b/src/common/bmpbase.cpp index c9c0e66621..82bb30b7ab 100644 --- a/src/common/bmpbase.cpp +++ b/src/common/bmpbase.cpp @@ -20,6 +20,7 @@ #ifndef WX_PRECOMP #include "wx/colour.h" #include "wx/icon.h" + #include "wx/image.h" #endif // WX_PRECOMP // ---------------------------------------------------------------------------- @@ -41,7 +42,6 @@ IMPLEMENT_VARIANT_OBJECT_EXPORTED(wxIcon,WXDLLEXPORT) #include "wx/log.h" #include "wx/utils.h" #include "wx/palette.h" - #include "wx/image.h" #include "wx/module.h" #endif // WX_PRECOMP @@ -146,8 +146,8 @@ class wxBitmapBaseModule: public wxModule DECLARE_DYNAMIC_CLASS(wxBitmapBaseModule) public: wxBitmapBaseModule() {} - bool OnInit() { wxBitmap::InitStandardHandlers(); return true; }; - void OnExit() { wxBitmap::CleanUpHandlers(); }; + bool OnInit() { wxBitmap::InitStandardHandlers(); return true; } + void OnExit() { wxBitmap::CleanUpHandlers(); } }; IMPLEMENT_DYNAMIC_CLASS(wxBitmapBaseModule, wxModule)