// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "spinctrl.h"
#endif
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
#include "wx/spinctrl.h"
#if wxUSE_SPINCTRL
m_parent->DoAddChild( this );
PostCreation();
+ InheritAttributes();
- SetFont( parent->GetFont() );
-
wxSize size_best( DoGetBestSize() );
wxSize new_size( size );
if (new_size.x == -1)
if ((new_size.x != size.x) || (new_size.y != size.y))
SetSize( new_size.x, new_size.y );
- SetBackgroundColour( parent->GetBackgroundColour() );
-
SetValue( value );
Show( TRUE );