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

@@ -79,14 +79,14 @@ bool wxControlBase::CreateControl(wxWindowBase *parent,
// even if it's possible to create controls without parents in some port,
// it should surely be discouraged because it doesn't work at all under
// Windows
wxCHECK_MSG( parent, FALSE, wxT("all controls must have parents") );
wxCHECK_MSG( parent, false, wxT("all controls must have parents") );
if ( !CreateBase(parent, id, pos, size, style, validator, name) )
return FALSE;
return false;
parent->AddChild(this);
return TRUE;
return true;
}
void wxControlBase::Command(wxCommandEvent& event)
@@ -120,7 +120,7 @@ void wxControlBase::InitCommandEvent(wxCommandEvent& event) const
void wxControlBase::SetLabel( const wxString &label )
{
InvalidateBestSize();
wxWindow::SetLabel(label);
wxWindow::SetLabel(label);
}
bool wxControlBase::SetFont(const wxFont& font)