diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-12-13 16:11:48 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-12-13 20:51:52 +0100 |
commit | 26c2b0af00e9aa14f5973d5fae96e5fb38151705 (patch) | |
tree | ff2ec0a2a7a3966e77b436ab1009a646cde5edf0 /sw/source/uibase/docvw | |
parent | 007d1815a2fca1ddc5eabc29d08642049ab8966d (diff) |
a11y: Move VCLXAccessibleComponent from toolkit to vcl
After
commit 168512dce7f1f1453c045584d47bd78a0a6c73f7
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Thu Dec 12 18:06:13 2024 +0100
a11y: Stop using VCLXWindow in vcl a11y classes
and further related commits, VCLXAccessibleComponent
no longer depends on anything in the toolkit module,
so move it from there to vcl.
This way, subclassing VCLXAccessibleComponent (as the
a11y classes for vcl widgets do, currently located in
accessibility/ ) no longer introduces a toolkit
dependency.
Change-Id: I4fd33fb1dc2265d75e8ca9ad87bcc70db61639d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178434
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sw/source/uibase/docvw')
-rw-r--r-- | sw/source/uibase/docvw/SidebarWinAcc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/docvw/SidebarWinAcc.hxx b/sw/source/uibase/docvw/SidebarWinAcc.hxx index 8dc4463e5824..529d800f0722 100644 --- a/sw/source/uibase/docvw/SidebarWinAcc.hxx +++ b/sw/source/uibase/docvw/SidebarWinAcc.hxx @@ -19,8 +19,8 @@ #pragma once -#include <toolkit/awt/vclxaccessiblecomponent.hxx> #include <toolkit/awt/vclxwindow.hxx> +#include <vcl/accessibility/vclxaccessiblecomponent.hxx> class SwViewShell; class SwSidebarItem; |