diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-06-07 19:55:24 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-06-07 19:55:24 -0400 |
commit | ec4b5668665f9e8231ceb861158efee765532af9 (patch) | |
tree | 4672f03415200430a8aa2bc9f9b1661fafacec07 /gtk/gtkprinteroptionwidget.h | |
parent | 876cbb7517f24e89ad7fad42d07f3bb52284550c (diff) | |
download | gtk+-ec4b5668665f9e8231ceb861158efee765532af9.tar.gz |
GtkPrinterOptionWidget: derive from GtkBox, not GtkHBox
Diffstat (limited to 'gtk/gtkprinteroptionwidget.h')
-rw-r--r-- | gtk/gtkprinteroptionwidget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkprinteroptionwidget.h b/gtk/gtkprinteroptionwidget.h index ad35fb9d7c..f392c52c02 100644 --- a/gtk/gtkprinteroptionwidget.h +++ b/gtk/gtkprinteroptionwidget.h @@ -20,7 +20,7 @@ #define __GTK_PRINTER_OPTION_WIDGET_H__ #include "gtkprinteroption.h" -#include "gtkhbox.h" +#include "gtkbox.h" G_BEGIN_DECLS @@ -38,14 +38,14 @@ typedef struct GtkPrinterOptionWidgetPrivate GtkPrinterOptionWidgetPrivate; struct _GtkPrinterOptionWidget { - GtkHBox parent_instance; + GtkBox parent_instance; GtkPrinterOptionWidgetPrivate *priv; }; struct _GtkPrinterOptionWidgetClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; void (*changed) (GtkPrinterOptionWidget *widget); |