Source cleaning: TRUE/true, FALSE/false, whitespaces, tabs.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29060 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -52,10 +52,10 @@ bool wxBitmapBase::RemoveHandler(const wxString& name)
|
||||
if ( handler )
|
||||
{
|
||||
sm_handlers.DeleteObject(handler);
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
return FALSE;
|
||||
return false;
|
||||
}
|
||||
|
||||
wxBitmapHandler *wxBitmapBase::FindHandler(const wxString& name)
|
||||
@@ -116,7 +116,7 @@ class wxBitmapBaseModule: public wxModule
|
||||
DECLARE_DYNAMIC_CLASS(wxBitmapBaseModule)
|
||||
public:
|
||||
wxBitmapBaseModule() {}
|
||||
bool OnInit() { wxBitmap::InitStandardHandlers(); return TRUE; };
|
||||
bool OnInit() { wxBitmap::InitStandardHandlers(); return true; };
|
||||
void OnExit() { wxBitmap::CleanUpHandlers(); };
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user