X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1deb3af2fd6a6360a32eb59303aa4f536516bd77..3ef595d5f879ec3ed4ef511445487261304313e2:/src/common/bmpbase.cpp diff --git a/src/common/bmpbase.cpp b/src/common/bmpbase.cpp index 35ec2c237f..8c940d21b0 100644 --- a/src/common/bmpbase.cpp +++ b/src/common/bmpbase.cpp @@ -28,8 +28,8 @@ // ---------------------------------------------------------------------------- #if wxUSE_VARIANT -IMPLEMENT_VARIANT_OBJECT_EXPORTED(wxBitmap,WXDLLEXPORT) -IMPLEMENT_VARIANT_OBJECT_EXPORTED(wxIcon,WXDLLEXPORT) +IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxBitmap,WXDLLEXPORT) +IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxIcon,WXDLLEXPORT) #endif // ---------------------------------------------------------------------------- @@ -42,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 @@ -147,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)