vcl/inc/headless/svpdummies.hxx | 4 ++-- vcl/inc/qt5/QtSystem.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 94f436af99699eaac83e8c107f516039969bcd4f Author: Michael Weghorn <[email protected]> AuthorDate: Fri Feb 27 23:17:39 2026 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Sat Feb 28 16:37:58 2026 +0100 vcl: Stop subclassing SalGenericSystem for qt, svp By now, both SvpSalSystem and QtSystem no longer make use of any functionality of the SalGenericSystem base class, so stop subclassing it. Change-Id: I66655485cd64994bfc3a2b2c838fe7a901bfbac8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200661 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/vcl/inc/headless/svpdummies.hxx b/vcl/inc/headless/svpdummies.hxx index 7e472acdaf9f..e7d3966874a4 100644 --- a/vcl/inc/headless/svpdummies.hxx +++ b/vcl/inc/headless/svpdummies.hxx @@ -20,7 +20,7 @@ #pragma once #include <vcl/sysdata.hxx> -#include <unx/gensys.h> +#include <salsys.hxx> #include <salobj.hxx> class SvpSalObject final : public SalObject @@ -42,7 +42,7 @@ public: virtual const SystemEnvData& GetSystemData() const override; }; -class SvpSalSystem : public SalGenericSystem +class SvpSalSystem : public SalSystem { public: SvpSalSystem() {} diff --git a/vcl/inc/qt5/QtSystem.hxx b/vcl/inc/qt5/QtSystem.hxx index 2a1e69a0bede..135e0df41a75 100644 --- a/vcl/inc/qt5/QtSystem.hxx +++ b/vcl/inc/qt5/QtSystem.hxx @@ -9,9 +9,9 @@ #pragma once -#include <unx/gensys.h> +#include <salsys.hxx> -class QtSystem final : public SalGenericSystem +class QtSystem final : public SalSystem { public: virtual unsigned int GetDisplayScreenCount() override;
