]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/statbox.cpp
Added parent window parameter to wxHelpController constructor
[wxWidgets.git] / src / gtk / statbox.cpp
index 5b09be49d10a699b15db1fc5a32e78f652edf28d..1cdcca5073d3afd0495cb7762cfd333dd6d31c0a 100644 (file)
@@ -7,10 +7,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "statbox.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -77,7 +73,7 @@ bool wxStaticBox::Create( wxWindow *parent,
     else // wxALIGN_LEFT
         xalign = 0.0;
 
-    if ( xalign )
+    if ( style & (wxALIGN_RIGHT | wxALIGN_CENTER) ) // left alignment is default
         gtk_frame_set_label_align(GTK_FRAME( m_widget ), xalign, 0.5);
 
     return TRUE;