#pragma hdrstop
#endif
-#if defined(__WXMGL__) || defined(__WXMAC__) \
+#if defined(__WXMGL__) || defined(__WXMAC__) || defined(__WXGTK__) \
|| defined(__WXMOTIF__) || defined(__WXX11__)
#include "wx/setup.h"
if ( handler )
{
sm_handlers.DeleteObject(handler);
- return TRUE;
+ return true;
}
else
- return FALSE;
+ return false;
}
wxBitmapHandler *wxBitmapBase::FindHandler(const wxString& name)
DECLARE_DYNAMIC_CLASS(wxBitmapBaseModule)
public:
wxBitmapBaseModule() {}
- bool OnInit() { wxBitmap::InitStandardHandlers(); return TRUE; };
+ bool OnInit() { wxBitmap::InitStandardHandlers(); return true; };
void OnExit() { wxBitmap::CleanUpHandlers(); };
};