diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-06-07 19:55:03 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-06-07 19:55:03 -0400 |
commit | 876cbb7517f24e89ad7fad42d07f3bb52284550c (patch) | |
tree | 597bdfd9f2ae1ad71fd166615e2d2a63bc8fecb1 /gtk/gtkinfobar.h | |
parent | 34085147e91637ff4ea68e301b44eac4f13932ec (diff) | |
download | gtk+-876cbb7517f24e89ad7fad42d07f3bb52284550c.tar.gz |
GtkInfoBar: derive from GtkBox, not GtkHBox
Diffstat (limited to 'gtk/gtkinfobar.h')
-rw-r--r-- | gtk/gtkinfobar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkinfobar.h b/gtk/gtkinfobar.h index 4a7cf5d83c..38ee94a41b 100644 --- a/gtk/gtkinfobar.h +++ b/gtk/gtkinfobar.h @@ -35,7 +35,7 @@ #ifndef __GTK_INFO_BAR_H__ #define __GTK_INFO_BAR_H__ -#include <gtk/gtkhbox.h> +#include <gtk/gtkbox.h> #include <gtk/gtkenums.h> G_BEGIN_DECLS @@ -58,7 +58,7 @@ typedef struct _GtkInfoBar GtkInfoBar; struct _GtkInfoBar { - GtkHBox parent; + GtkBox parent; /*< private > */ GtkInfoBarPrivate *priv; @@ -67,7 +67,7 @@ struct _GtkInfoBar struct _GtkInfoBarClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; /* Signals */ void (* response) (GtkInfoBar *info_bar, gint response_id); |