forked from AuroraMiddleware/gtk
window: Fix accessible implementation
Now that GtkWindow is no longer a container, update the accessible implementation to match.
This commit is contained in:
parent
7fac7c2d28
commit
501eda2956
@ -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
|
||||
|
||||
@ -39,14 +39,14 @@ typedef struct _GtkWindowAccessiblePrivate GtkWindowAccessiblePrivate;
|
||||
|
||||
struct _GtkWindowAccessible
|
||||
{
|
||||
GtkContainerAccessible parent;
|
||||
GtkWidgetAccessible parent;
|
||||
|
||||
GtkWindowAccessiblePrivate *priv;
|
||||
};
|
||||
|
||||
struct _GtkWindowAccessibleClass
|
||||
{
|
||||
GtkContainerAccessibleClass parent_class;
|
||||
GtkWidgetAccessibleClass parent_class;
|
||||
};
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
|
@ -66,7 +66,6 @@
|
||||
#include "gtktooltipprivate.h"
|
||||
|
||||
#include "a11y/gtkwindowaccessibleprivate.h"
|
||||
#include "a11y/gtkcontaineraccessibleprivate.h"
|
||||
#include "inspector/window.h"
|
||||
|
||||
#include "gdk/gdktextureprivate.h"
|
||||
|
Loading…
Reference in New Issue
Block a user