summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-08 01:24:48 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-11 15:42:51 -0400
commitce5b51b017a1f615098c4b325ac510571f3ce8e1 (patch)
treec5e599165b2bb1398d80f1fd8c3caf7b546c7a9a /gtk
parentcca73c436de666868eef38ab41c48ba4dc4723e8 (diff)
downloadgtk+-ce5b51b017a1f615098c4b325ac510571f3ce8e1.tar.gz
flowboxchild: Fix accessible implementation
Now that GtkFlowBoxChild is no longer a container, update the accessible implementation to match.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/a11y/gtkflowboxchildaccessible.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/a11y/gtkflowboxchildaccessible.h b/gtk/a11y/gtkflowboxchildaccessible.h
index 1e11b355c2..c010ffe25d 100644
--- a/gtk/a11y/gtkflowboxchildaccessible.h
+++ b/gtk/a11y/gtkflowboxchildaccessible.h
@@ -22,7 +22,7 @@
#error "Only <gtk/gtk-a11y.h> can be included directly."
#endif
-#include <gtk/a11y/gtkcontaineraccessible.h>
+#include <gtk/a11y/gtkwidgetaccessible.h>
G_BEGIN_DECLS
@@ -38,12 +38,12 @@ typedef struct _GtkFlowBoxChildAccessibleClass GtkFlowBoxChildAccessibleClass;
struct _GtkFlowBoxChildAccessible
{
- GtkContainerAccessible parent;
+ GtkWidgetAccessible parent;
};
struct _GtkFlowBoxChildAccessibleClass
{
- GtkContainerAccessibleClass parent_class;
+ GtkWidgetAccessibleClass parent_class;
};
GDK_AVAILABLE_IN_ALL