mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 14:31:10 +00:00
scrolledwindow: Fix accessible implementation
Now that GtkScrolledWindow is no longer a container, update the accessible implementation to match.
This commit is contained in:
parent
a65f70ac23
commit
295c5594ce
@ -22,7 +22,7 @@
|
|||||||
#error "Only <gtk/gtk-a11y.h> can be included directly."
|
#error "Only <gtk/gtk-a11y.h> can be included directly."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <gtk/a11y/gtkcontaineraccessible.h>
|
#include <gtk/a11y/gtkwidgetaccessible.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
@ -39,14 +39,14 @@ typedef struct _GtkScrolledWindowAccessiblePrivate GtkScrolledWindowAccessiblePr
|
|||||||
|
|
||||||
struct _GtkScrolledWindowAccessible
|
struct _GtkScrolledWindowAccessible
|
||||||
{
|
{
|
||||||
GtkContainerAccessible parent;
|
GtkWidgetAccessible parent;
|
||||||
|
|
||||||
GtkScrolledWindowAccessiblePrivate *priv;
|
GtkScrolledWindowAccessiblePrivate *priv;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GtkScrolledWindowAccessibleClass
|
struct _GtkScrolledWindowAccessibleClass
|
||||||
{
|
{
|
||||||
GtkContainerAccessibleClass parent_class;
|
GtkWidgetAccessibleClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_AVAILABLE_IN_ALL
|
||||||
|
Loading…
Reference in New Issue
Block a user