X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1f448eeefd90163fedd9134f35203afe51200c6..cb928fe350ca0c093642133cf0de24d1b064aa72:/src/gtk/stattext.cpp?ds=sidebyside diff --git a/src/gtk/stattext.cpp b/src/gtk/stattext.cpp index 53fe9f98e5..228cac559f 100644 --- a/src/gtk/stattext.cpp +++ b/src/gtk/stattext.cpp @@ -7,12 +7,12 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "stattext.h" #endif -#include "wx/defs.h" +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" #if wxUSE_STATTEXT @@ -111,7 +111,8 @@ bool wxStaticText::Create(wxWindow *parent, ApplyWidgetStyle(); - wxControl::SetFont( parent->GetFont() ); + InheritAttributes(); +// wxControl::SetFont( parent->GetFont() ); wxSize size_best( DoGetBestSize() ); wxSize new_size( size ); @@ -122,8 +123,11 @@ bool wxStaticText::Create(wxWindow *parent, if ((new_size.x != size.x) || (new_size.y != size.y)) SetSize( new_size.x, new_size.y ); - SetBackgroundColour( parent->GetBackgroundColour() ); - SetForegroundColour( parent->GetForegroundColour() ); +// if (ShouldInheritColours()) +// { +// SetBackgroundColour( parent->GetBackgroundColour() ); +// SetForegroundColour( parent->GetForegroundColour() ); +// } Show( TRUE ); return TRUE;