Remove stray whitespaces

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36875 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-01-14 18:32:37 +00:00
parent 487af9c3b1
commit 3d257b8db1
32 changed files with 116 additions and 116 deletions

View File

@@ -67,7 +67,7 @@ bool wxStaticText::Create(wxWindow *parent,
// effect of changing the control size which might not be desirable
wxControl::SetLabel(label);
m_widget = gtk_label_new( wxGTK_CONV( m_label ) );
GtkJustification justify;
if ( style & wxALIGN_CENTER )
justify = GTK_JUSTIFY_CENTER;
@@ -86,7 +86,7 @@ bool wxStaticText::Create(wxWindow *parent,
m_parent->DoAddChild( this );
PostCreation(size);
// the bug below only happens with GTK 2
#ifdef __WXGTK20__
if ( justify != GTK_JUSTIFY_LEFT )
@@ -183,7 +183,7 @@ wxSize wxStaticText::DoGetBestSize() const
// GetBestSize is supposed to return unwrapped size
gtk_label_set_line_wrap( GTK_LABEL(m_widget), FALSE );
GtkRequisition req;
req.width = -1;
req.height = -1;
@@ -191,7 +191,7 @@ wxSize wxStaticText::DoGetBestSize() const
(m_widget, &req );
gtk_label_set_line_wrap( GTK_LABEL(m_widget), TRUE );
return wxSize (req.width, req.height);
}