summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-05-17 09:37:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2023-05-17 15:46:34 +0200
commitd5d40497112e13ca281573b4d7b3b3a350d29ea4 (patch)
tree5dd6fdf286ed8353fe0920baa75c1b4342291f2f /vcl/unx
parent2811ffb4a5f6629101e851d0d57c9816404464ab (diff)
loplugin:reservedid
Change-Id: Ia24f5214f44a5ef4f5ac4397b8adcd6d46a99676 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151863 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/gtk4/a11y.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/vcl/unx/gtk4/a11y.cxx b/vcl/unx/gtk4/a11y.cxx
index 307d72624fab..459ed3bc8f78 100644
--- a/vcl/unx/gtk4/a11y.cxx
+++ b/vcl/unx/gtk4/a11y.cxx
@@ -162,9 +162,7 @@ GType lo_accessible_get_type();
#define LO_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), LO_TYPE_ACCESSIBLE, LoAccessible))
// #define LO_IS_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LO_TYPE_ACCESSIBLE))
-typedef struct _LoAccessible LoAccessible;
-
-struct _LoAccessible
+struct LoAccessible
{
GObject parent_instance;
GdkDisplay* display;
@@ -173,8 +171,7 @@ struct _LoAccessible
css::uno::Reference<css::accessibility::XAccessible> uno_accessible;
};
-typedef struct _LoAccessibleClass LoAccessibleClass;
-struct _LoAccessibleClass
+struct LoAccessibleClass
{
GObjectClass parent_class;
};