// Created: 2001/04/11
// RCS-ID: $Id$
// Copyright: (c) 2001, Vaclav Slavik
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#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(); };
};