summaryrefslogtreecommitdiff
path: root/gtk/gtkcheckbutton.h
diff options
context:
space:
mode:
authorYetizone <andreii.lisita@gmail.com>2020-12-29 15:54:25 +0200
committerYetizone <andreii.lisita@gmail.com>2021-01-04 17:25:53 +0200
commit601dfeeff981668436ef9beec96870fc340c2c29 (patch)
treed6d5a0c48c3045bd0fa64af4961cbc22672d4f6b /gtk/gtkcheckbutton.h
parentcf623ce774677d6ed7b850e8943968b62b5b5d3c (diff)
downloadgtk+-601dfeeff981668436ef9beec96870fc340c2c29.tar.gz
checkbutton: Add activate signal to work with gtk_widget_activate()
Fixes https://gitlab.gnome.org/GNOME/gtk/-/issues/3525 Fixes https://gitlab.gnome.org/GNOME/gtk/-/issues/3550
Diffstat (limited to 'gtk/gtkcheckbutton.h')
-rw-r--r--gtk/gtkcheckbutton.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkcheckbutton.h b/gtk/gtkcheckbutton.h
index 8c9e8c0ddc..b4d2c63459 100644
--- a/gtk/gtkcheckbutton.h
+++ b/gtk/gtkcheckbutton.h
@@ -56,9 +56,10 @@ struct _GtkCheckButtonClass
GtkWidgetClass parent_class;
void (* toggled) (GtkCheckButton *check_button);
+ void (* activate) (GtkCheckButton *check_button);
/*< private >*/
- gpointer padding[8];
+ gpointer padding[7];
};