X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/18ac7bef9e6dc557a513caacd734bd4abaaf1a44..c96d7bec67801a380d029990ad1df5e2c9fc207b:/src/gtk/button.cpp?ds=sidebyside diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 61e1ad1396..12e0807e50 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -127,18 +127,7 @@ bool wxButton::Create(wxWindow *parent, else if (HasFlag(wxBU_BOTTOM)) y_alignment = 1.0; -#ifdef __WXGTK24__ - if (!gtk_check_version(2,4,0)) - { - gtk_button_set_alignment(GTK_BUTTON(m_widget), x_alignment, y_alignment); - } - else -#endif - { - if (GTK_IS_MISC(GTK_BIN(m_widget)->child)) - gtk_misc_set_alignment(GTK_MISC(GTK_BIN(m_widget)->child), - x_alignment, y_alignment); - } + gtk_button_set_alignment(GTK_BUTTON(m_widget), x_alignment, y_alignment); SetLabel(label);