summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserbutton.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-06-07 19:54:40 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-06-07 19:54:40 -0400
commit34085147e91637ff4ea68e301b44eac4f13932ec (patch)
tree89bb9035eb3372bcd46fb605de7cd4d22b28d10b /gtk/gtkfilechooserbutton.h
parent29e664629225128e9d8be02aa27b95a3d0ad47ef (diff)
downloadgtk+-34085147e91637ff4ea68e301b44eac4f13932ec.tar.gz
GtkFileChooserButton: derive from GtkBox, not GtkHBox
Diffstat (limited to 'gtk/gtkfilechooserbutton.h')
-rw-r--r--gtk/gtkfilechooserbutton.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkfilechooserbutton.h b/gtk/gtkfilechooserbutton.h
index e469ef7c98..fb0cee19dc 100644
--- a/gtk/gtkfilechooserbutton.h
+++ b/gtk/gtkfilechooserbutton.h
@@ -25,7 +25,7 @@
#ifndef __GTK_FILE_CHOOSER_BUTTON_H__
#define __GTK_FILE_CHOOSER_BUTTON_H__
-#include <gtk/gtkhbox.h>
+#include <gtk/gtkbox.h>
#include <gtk/gtkfilechooser.h>
G_BEGIN_DECLS
@@ -43,7 +43,7 @@ typedef struct _GtkFileChooserButtonClass GtkFileChooserButtonClass;
struct _GtkFileChooserButton
{
- GtkHBox parent;
+ GtkBox parent;
/*< private >*/
GtkFileChooserButtonPrivate *priv;
@@ -52,7 +52,7 @@ struct _GtkFileChooserButton
struct _GtkFileChooserButtonClass
{
/*< private >*/
- GtkHBoxClass parent_class;
+ GtkBoxClass parent_class;
void (* file_set) (GtkFileChooserButton *fc);