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:
Włodzimierz Skiba
2004-09-09 17:42:36 +00:00
parent 11908acc89
commit c9d59ee7e0
12 changed files with 133 additions and 133 deletions

View File

@@ -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(); };
};