]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/stattext.cpp
Code cleaning.
[wxWidgets.git] / src / gtk / stattext.cpp
index 316d7b2888d71537b857c62b3b85fc1085cbcedb..59817b50277d564f02b2393b71f2acd1b1d1a9ed 100644 (file)
@@ -7,10 +7,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "stattext.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -71,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;
@@ -90,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 )
@@ -187,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;
@@ -195,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);
 }