X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/db434467a143a2c847c4bcfe987f0202c2d02bf2..bcd3d8d9e26e41615d26d457ba0e2b84b80a0356:/src/gtk/checkbox.cpp diff --git a/src/gtk/checkbox.cpp b/src/gtk/checkbox.cpp index 051e51b500..f4ff061e92 100644 --- a/src/gtk/checkbox.cpp +++ b/src/gtk/checkbox.cpp @@ -12,10 +12,12 @@ #pragma implementation "checkbox.h" #endif -#include "wx/checkbox.h" +#include "wx/defs.h" #if wxUSE_CHECKBOX +#include "wx/checkbox.h" + #include #include @@ -77,7 +79,7 @@ bool wxCheckBox::Create(wxWindow *parent, !CreateBase( parent, id, pos, size, style, validator, name )) { wxFAIL_MSG( wxT("wxCheckBox creation failed") ); - return FALSE; + return FALSE; } wxControl::SetLabel( label ); @@ -115,8 +117,6 @@ bool wxCheckBox::Create(wxWindow *parent, PostCreation(); - ApplyWidgetStyle(); - SetFont( parent->GetFont() ); wxSize size_best( DoGetBestSize() ); @@ -148,7 +148,7 @@ void wxCheckBox::SetValue( bool state ) (gpointer *)this ); gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widgetCheckbox), state ); - + gtk_signal_connect( GTK_OBJECT(m_widgetCheckbox), "clicked", GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback), @@ -201,11 +201,11 @@ void wxCheckBox::OnInternalIdle() if (GTK_TOGGLE_BUTTON(m_widgetCheckbox)->event_window && cursor.Ok()) { /* I now set the cursor the anew in every OnInternalIdle call - as setting the cursor in a parent window also effects the - windows above so that checking for the current cursor is - not possible. */ - - gdk_window_set_cursor( GTK_TOGGLE_BUTTON(m_widgetCheckbox)->event_window, cursor.GetCursor() ); + as setting the cursor in a parent window also effects the + windows above so that checking for the current cursor is + not possible. */ + + gdk_window_set_cursor( GTK_TOGGLE_BUTTON(m_widgetCheckbox)->event_window, cursor.GetCursor() ); } UpdateWindowUI();