summaryrefslogtreecommitdiff
path: root/gtk/gtkfontbutton.h
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-01-19 20:15:43 +0100
committerTimm Bäder <mail@baedert.org>2017-01-20 21:51:03 +0100
commitb1408c9694e6c7b7b207f985bfbe751deed23925 (patch)
treedf0bc08b61f17d3a276db6b6ea1e4ae9b9359f29 /gtk/gtkfontbutton.h
parent6376aaf44b011a8203792c31a629feeb582e834e (diff)
downloadgtk+-b1408c9694e6c7b7b207f985bfbe751deed23925.tar.gz
fontbutton: Be a GtkWidget
Diffstat (limited to 'gtk/gtkfontbutton.h')
-rw-r--r--gtk/gtkfontbutton.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfontbutton.h b/gtk/gtkfontbutton.h
index 2a7dae617b..22e6aef554 100644
--- a/gtk/gtkfontbutton.h
+++ b/gtk/gtkfontbutton.h
@@ -50,14 +50,14 @@ typedef struct _GtkFontButtonClass GtkFontButtonClass;
typedef struct _GtkFontButtonPrivate GtkFontButtonPrivate;
struct _GtkFontButton {
- GtkButton button;
+ GtkWidget parent_instance;
/*< private >*/
GtkFontButtonPrivate *priv;
};
struct _GtkFontButtonClass {
- GtkButtonClass parent_class;
+ GtkWidgetClass parent_class;
/* font_set signal is emitted when font is chosen */
void (* font_set) (GtkFontButton *gfp);