vcl/unx/generic/dtrans/X11_clipboard.hxx | 2 +- vcl/unx/generic/dtrans/X11_dndcontext.cxx | 3 ++- vcl/unx/generic/dtrans/X11_droptarget.cxx | 3 ++- vcl/unx/generic/dtrans/X11_selection.cxx | 3 ++- vcl/unx/generic/dtrans/X11_transferable.hxx | 3 ++- 5 files changed, 9 insertions(+), 5 deletions(-)
New commits: commit bc323d7c0bb3c0c471b0d957ed739e88255fa7bf Author: Michael Weghorn <[email protected]> AuthorDate: Mon Mar 2 06:31:20 2026 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Mon Mar 2 17:22:26 2026 +0100 vcl: Move X11_selection.hxx to vcl/inc/unx Now that X11DisplayConnectionDispatch has been moved to the gen vcl plugin in earlier commit Change-Id: I41a826234b7737b97f91d3980c262419ae6034aa Author: Michael Weghorn <[email protected]> Date: Mon Mar 2 06:05:36 2026 +0100 vcl: Move X11DisplayConnectionDispatch logic to gen vcl plugin , this additional step prepares for using SelectionManager directly in X11DisplayConnectionDispatch in an upcoming commit to get rid of the abstract DisplayEventHandler base class. Change-Id: I5da7fe92a6e676a3937d41b2c553269cb1631616 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200762 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/vcl/unx/generic/dtrans/X11_selection.hxx b/vcl/inc/unx/X11_selection.hxx similarity index 100% rename from vcl/unx/generic/dtrans/X11_selection.hxx rename to vcl/inc/unx/X11_selection.hxx diff --git a/vcl/unx/generic/dtrans/X11_clipboard.hxx b/vcl/unx/generic/dtrans/X11_clipboard.hxx index 1bad05339353..037cf4e53e17 100644 --- a/vcl/unx/generic/dtrans/X11_clipboard.hxx +++ b/vcl/unx/generic/dtrans/X11_clipboard.hxx @@ -19,7 +19,7 @@ #pragma once -#include "X11_selection.hxx" +#include <unx/X11_selection.hxx> #include <com/sun/star/datatransfer/clipboard/XSystemClipboard.hpp> #include <cppuhelper/compbase.hxx> diff --git a/vcl/unx/generic/dtrans/X11_dndcontext.cxx b/vcl/unx/generic/dtrans/X11_dndcontext.cxx index 638c47387da4..3239553891ee 100644 --- a/vcl/unx/generic/dtrans/X11_dndcontext.cxx +++ b/vcl/unx/generic/dtrans/X11_dndcontext.cxx @@ -18,7 +18,8 @@ */ #include "X11_dndcontext.hxx" -#include "X11_selection.hxx" + +#include <unx/X11_selection.hxx> using namespace cppu; using namespace x11; diff --git a/vcl/unx/generic/dtrans/X11_droptarget.cxx b/vcl/unx/generic/dtrans/X11_droptarget.cxx index 938339ceff55..24709a435305 100644 --- a/vcl/unx/generic/dtrans/X11_droptarget.cxx +++ b/vcl/unx/generic/dtrans/X11_droptarget.cxx @@ -17,8 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <unx/X11_selection.hxx> + #include <cppuhelper/supportsservice.hxx> -#include "X11_selection.hxx" using namespace x11; using namespace com::sun::star::uno; diff --git a/vcl/unx/generic/dtrans/X11_selection.cxx b/vcl/unx/generic/dtrans/X11_selection.cxx index 5882886c0bd6..f4deb1f454fd 100644 --- a/vcl/unx/generic/dtrans/X11_selection.cxx +++ b/vcl/unx/generic/dtrans/X11_selection.cxx @@ -41,12 +41,13 @@ #include <sal/macros.h> -#include "X11_selection.hxx" #include "X11_clipboard.hxx" #include "X11_transferable.hxx" #include "X11_dndcontext.hxx" #include "bmp.hxx" +#include <unx/X11_selection.hxx> + #include <vcl/svapp.hxx> #include <o3tl/string_view.hxx> diff --git a/vcl/unx/generic/dtrans/X11_transferable.hxx b/vcl/unx/generic/dtrans/X11_transferable.hxx index 23cb9dd373a6..b2ba97104a3b 100644 --- a/vcl/unx/generic/dtrans/X11_transferable.hxx +++ b/vcl/unx/generic/dtrans/X11_transferable.hxx @@ -19,7 +19,8 @@ #pragma once -#include "X11_selection.hxx" +#include <unx/X11_selection.hxx> + #include <com/sun/star/datatransfer/XTransferable.hpp> #include <cppuhelper/implbase.hxx>
