summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserwidget.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-05-05 13:40:29 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-05-05 13:40:29 +0000
commit80b99a7e9932e655a6794ddefe79eb7c3798fba4 (patch)
treee39698bb8ab8bf100c16d23893244e9747a40c46 /gtk/gtkfilechooserwidget.h
parent91e82e7e9e6b6b4fe0202c1f3946d2705f5ea0dc (diff)
downloadgtk+-80b99a7e9932e655a6794ddefe79eb7c3798fba4.tar.gz
gtk/gtkcellrenderercombo.h gtk/gtkcellrendererspin.h style cleanups for
2008-05-05 Michael Natterer <mitch@imendio.com> * gtk/gtkcellrenderercombo.h * gtk/gtkcellrendererspin.h * gtk/gtkfilechooserbutton.h: style cleanups for the sake of consistency. * gtk/gtkfilechooserdialog.h * gtk/gtkfilechooserwidget.h * gtk/gtkscalebutton.h: reorder instance and class structs to be in canonical order. svn path=/trunk/; revision=20074
Diffstat (limited to 'gtk/gtkfilechooserwidget.h')
-rw-r--r--gtk/gtkfilechooserwidget.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/gtk/gtkfilechooserwidget.h b/gtk/gtkfilechooserwidget.h
index 2df7ded17f..194acb3be8 100644
--- a/gtk/gtkfilechooserwidget.h
+++ b/gtk/gtkfilechooserwidget.h
@@ -33,15 +33,9 @@ G_BEGIN_DECLS
#define GTK_IS_FILE_CHOOSER_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FILE_CHOOSER_WIDGET))
#define GTK_FILE_CHOOSER_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FILE_CHOOSER_WIDGET, GtkFileChooserWidgetClass))
-typedef struct _GtkFileChooserWidget GtkFileChooserWidget;
-typedef struct _GtkFileChooserWidgetClass GtkFileChooserWidgetClass;
-
+typedef struct _GtkFileChooserWidget GtkFileChooserWidget;
typedef struct _GtkFileChooserWidgetPrivate GtkFileChooserWidgetPrivate;
-
-struct _GtkFileChooserWidgetClass
-{
- GtkVBoxClass parent_class;
-};
+typedef struct _GtkFileChooserWidgetClass GtkFileChooserWidgetClass;
struct _GtkFileChooserWidget
{
@@ -50,6 +44,11 @@ struct _GtkFileChooserWidget
GtkFileChooserWidgetPrivate *priv;
};
+struct _GtkFileChooserWidgetClass
+{
+ GtkVBoxClass parent_class;
+};
+
GType gtk_file_chooser_widget_get_type (void) G_GNUC_CONST;
GtkWidget *gtk_file_chooser_widget_new (GtkFileChooserAction action);
GtkWidget *gtk_file_chooser_widget_new_with_backend (GtkFileChooserAction action,