summaryrefslogtreecommitdiff
path: root/gtk/gtkrecentchooserwidget.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-06-07 18:35:28 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-06-07 18:35:28 -0400
commitb1278b9ee283d81e1f2917a298b60f7d67faae15 (patch)
tree2f47d135cba880a5f9876475fa772d5074dc6f54 /gtk/gtkrecentchooserwidget.h
parent896540f56b30aab6bf63a1f0dad7cb746ae85788 (diff)
downloadgtk+-b1278b9ee283d81e1f2917a298b60f7d67faae15.tar.gz
GtkRecentChooserWidget: derive from GtkBox, not GtkVBox
Diffstat (limited to 'gtk/gtkrecentchooserwidget.h')
-rw-r--r--gtk/gtkrecentchooserwidget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkrecentchooserwidget.h b/gtk/gtkrecentchooserwidget.h
index dce2805975..a4a7ca6a91 100644
--- a/gtk/gtkrecentchooserwidget.h
+++ b/gtk/gtkrecentchooserwidget.h
@@ -26,7 +26,7 @@
#define __GTK_RECENT_CHOOSER_WIDGET_H__
#include <gtk/gtkrecentchooser.h>
-#include <gtk/gtkvbox.h>
+#include <gtk/gtkbox.h>
G_BEGIN_DECLS
@@ -44,7 +44,7 @@ typedef struct _GtkRecentChooserWidgetPrivate GtkRecentChooserWidgetPrivate;
struct _GtkRecentChooserWidget
{
- GtkVBox parent_instance;
+ GtkBox parent_instance;
/*< private >*/
GtkRecentChooserWidgetPrivate *priv;
@@ -52,7 +52,7 @@ struct _GtkRecentChooserWidget
struct _GtkRecentChooserWidgetClass
{
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
/* Padding for future expansion */
void (*_gtk_reserved1) (void);