diff options
Diffstat (limited to 'gtk/gtkexpander.c')
-rw-r--r-- | gtk/gtkexpander.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c index cba7916c12..43b48ce9e4 100644 --- a/gtk/gtkexpander.c +++ b/gtk/gtkexpander.c @@ -145,6 +145,20 @@ enum PROP_RESIZE_TOPLEVEL }; +typedef struct _GtkExpanderClass GtkExpanderClass; + +struct _GtkExpander +{ + GtkContainer parent_instance; +}; + +struct _GtkExpanderClass +{ + GtkContainerClass parent_class; + + void (* activate) (GtkExpander *expander); +}; + typedef struct _GtkExpanderPrivate GtkExpanderPrivate; struct _GtkExpanderPrivate { |