diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:55:28 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 00:55:28 +0000 |
commit | e11c1fcb91ff62df6cb4c530ecb60741c8ea0317 (patch) | |
tree | 6ae45ac749be6fa87965862123f44664dce19f9c /gtk/gtkfontbutton.c | |
parent | dbdb137428f814d60301fb7342b7864f4aeedba6 (diff) | |
download | gtk+-e11c1fcb91ff62df6cb4c530ecb60741c8ea0317.tar.gz |
font button: Make final
Diffstat (limited to 'gtk/gtkfontbutton.c')
-rw-r--r-- | gtk/gtkfontbutton.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index 6e12768c2f..d984a8661c 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -60,6 +60,19 @@ * GtkFontButton has a single CSS node with name fontbutton. */ +typedef struct _GtkFontButtonClass GtkFontButtonClass; + +struct _GtkFontButton +{ + GtkWidget parent_instance; +}; + +struct _GtkFontButtonClass +{ + GtkWidgetClass parent_class; + + void (* font_set) (GtkFontButton *gfp); +}; typedef struct { |