diff options
author | Benjamin Otte <otte@redhat.com> | 2011-08-30 15:10:49 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-09-05 18:56:23 +0200 |
commit | b314f03bf4d96e71eb1385db40959c610dbd1c7d (patch) | |
tree | 55413a7a63b3b18839f0d8a1be2f15da27ec4da4 /gtk/gtkradiobutton.c | |
parent | 7edf79de265b783c5053773892aa3e232870c8cb (diff) | |
download | gtk+-b314f03bf4d96e71eb1385db40959c610dbd1c7d.tar.gz |
radiobutton: Remove redundant call
The call is done by GtkButton already, no need to override it.
Diffstat (limited to 'gtk/gtkradiobutton.c')
-rw-r--r-- | gtk/gtkradiobutton.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c index cb1ba20d55..73f11c678b 100644 --- a/gtk/gtkradiobutton.c +++ b/gtk/gtkradiobutton.c @@ -210,7 +210,6 @@ gtk_radio_button_init (GtkRadioButton *radio_button) GtkRadioButtonPrivate); priv = radio_button->priv; - gtk_widget_set_has_window (GTK_WIDGET (radio_button), FALSE); gtk_widget_set_receives_default (GTK_WIDGET (radio_button), FALSE); _gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (radio_button), TRUE); |