use wxALIGN_LEFT/CENTRE/RIGHT instead of wxTE_XXX to avoid problems with the latter not being defined in wx/spinctrl.h on non-MSW platforms (see #10621)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -119,9 +119,9 @@ bool wxSpinCtrlGTKBase::Create(wxWindow *parent, wxWindowID id,
|
||||
m_value = gtk_spin_button_get_value( GTK_SPIN_BUTTON(m_widget));
|
||||
|
||||
gfloat align;
|
||||
if ( HasFlag(wxTE_RIGHT) )
|
||||
if ( HasFlag(wxALIGN_RIGHT) )
|
||||
align = 1.0;
|
||||
else if ( HasFlag(wxTE_CENTRE) )
|
||||
else if ( HasFlag(wxALIGN_CENTRE) )
|
||||
align = 0.5;
|
||||
else
|
||||
align = 0.0;
|
||||
|
Reference in New Issue
Block a user