summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechoosererrorstackprivate.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-05-28 22:12:20 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-05-28 22:35:36 +0000
commit055a991e08ac2b1dd54c7fc3605afdf2b78e834e (patch)
tree4776b823a46da9e5da3ae7b94201dfb5a4491a45 /gtk/gtkfilechoosererrorstackprivate.h
parentbc739e607ba2c5394f4d3d9967886b5c3dab36ba (diff)
downloadgtk+-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.h6
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;