diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2009-02-11 16:31:47 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2009-02-11 16:31:47 +0000 |
commit | a6c640a074c0d1bad8aa5bca172b9173e52624ff (patch) | |
tree | 0ea1845c237fd54b98f624e7d987ccfddfc40905 /gtk/gtkvolumebutton.h | |
parent | 4ed42526133e43a7ce9febc2de6d6a67c2080287 (diff) | |
download | gtk+-a6c640a074c0d1bad8aa5bca172b9173e52624ff.tar.gz |
Move the _GtkVolumeButton definition into the header to make it possible
* gtk/gtkvolumebutton.[hc]: Move the _GtkVolumeButton definition
into the header to make it possible to derive from GtkVoumeButton.
Reported by Chris Lord.
svn path=/trunk/; revision=22315
Diffstat (limited to 'gtk/gtkvolumebutton.h')
-rw-r--r-- | gtk/gtkvolumebutton.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtkvolumebutton.h b/gtk/gtkvolumebutton.h index c69724fe11..6084e983b2 100644 --- a/gtk/gtkvolumebutton.h +++ b/gtk/gtkvolumebutton.h @@ -48,6 +48,11 @@ G_BEGIN_DECLS typedef struct _GtkVolumeButton GtkVolumeButton; typedef struct _GtkVolumeButtonClass GtkVolumeButtonClass; +struct _GtkVolumeButton +{ + GtkScaleButton parent; +}; + struct _GtkVolumeButtonClass { GtkScaleButtonClass parent_class; |