diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 22:12:20 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 22:35:36 +0000 |
commit | 055a991e08ac2b1dd54c7fc3605afdf2b78e834e (patch) | |
tree | 4776b823a46da9e5da3ae7b94201dfb5a4491a45 /gtk/gtkfilechoosererrorstackprivate.h | |
parent | bc739e607ba2c5394f4d3d9967886b5c3dab36ba (diff) | |
download | gtk+-055a991e08ac2b1dd54c7fc3605afdf2b78e834e.tar.gz |
file chooser error stack: Don't derive from stack
We can just have a GtkStack, instead.
Diffstat (limited to 'gtk/gtkfilechoosererrorstackprivate.h')
-rw-r--r-- | gtk/gtkfilechoosererrorstackprivate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/gtkfilechoosererrorstackprivate.h b/gtk/gtkfilechoosererrorstackprivate.h index 7f222c65f8..5fc9dc21e4 100644 --- a/gtk/gtkfilechoosererrorstackprivate.h +++ b/gtk/gtkfilechoosererrorstackprivate.h @@ -36,12 +36,14 @@ typedef struct _GtkFileChooserErrorStackClass GtkFileChooserErrorStackCla struct _GtkFileChooserErrorStack { - GtkStack parent_instance; + GtkWidget parent_instance; + + GtkWidget *stack; }; struct _GtkFileChooserErrorStackClass { - GtkStackClass parent_class; + GtkWidgetClass parent_class; }; GType gtk_file_chooser_error_stack_get_type (void) G_GNUC_CONST; |