summaryrefslogtreecommitdiff
path: root/gtk/gtkradiobutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-05-27 00:10:48 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-05-27 00:10:48 -0400
commit5d3c85c7e9481fb33626f71ba2e01592c9882fdc (patch)
treec32aaf0fc4ff65e4bce4e72638f12318ce8231ed /gtk/gtkradiobutton.c
parenta29fe385df1468b042943792884fd91761ab3501 (diff)
downloadgtk+-5d3c85c7e9481fb33626f71ba2e01592c9882fdc.tar.gz
radio button: Make final
Diffstat (limited to 'gtk/gtkradiobutton.c')
-rw-r--r--gtk/gtkradiobutton.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c
index c4d115ff9b..303f16a1f8 100644
--- a/gtk/gtkradiobutton.c
+++ b/gtk/gtkradiobutton.c
@@ -128,6 +128,19 @@
* can be used to determine if the button has been selected or deselected.
*/
+typedef struct _GtkRadioButtonClass GtkRadioButtonClass;
+
+struct _GtkRadioButton
+{
+ GtkCheckButton parent_instance;
+};
+
+struct _GtkRadioButtonClass
+{
+ GtkCheckButtonClass parent_class;
+
+ void (*group_changed) (GtkRadioButton *radio_button);
+};
typedef struct
{