diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-08-14 11:07:56 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-08-14 14:01:03 +0200 |
commit | 754a8591f4e8ac6aea06436430e774143b190c81 (patch) | |
tree | a05ef949ff941f077e292d4a83fe4a57ddfffcdf /vcl/inc/qt5 | |
parent | 53730cc3b0a6b0228f680962f79ae6bec9e7fe02 (diff) |
qt: Remove "5" from render backend name
The previously named "qtsvp5" and "qt5" render backends
are used for both, qt5 and qt6 since the qt6 VCL plugin
exists, so drop "5" from the name.
Change-Id: Ia97eb14d9229bf33d40a6a383d7656f9467ad460
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171854
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Tested-by: Jenkins
Diffstat (limited to 'vcl/inc/qt5')
-rw-r--r-- | vcl/inc/qt5/QtGraphics.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/qt5/QtSvpGraphics.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/qt5/QtGraphics.hxx b/vcl/inc/qt5/QtGraphics.hxx index 5277fba33923..60486dff3936 100644 --- a/vcl/inc/qt5/QtGraphics.hxx +++ b/vcl/inc/qt5/QtGraphics.hxx @@ -67,7 +67,7 @@ public: void freeResources() override {} - OUString getRenderBackendName() const override { return u"qt5"_ustr; } + OUString getRenderBackendName() const override { return u"qt"_ustr; } void setClipRegion(vcl::Region const& rRegion) override; void ResetClipRegion() override; diff --git a/vcl/inc/qt5/QtSvpGraphics.hxx b/vcl/inc/qt5/QtSvpGraphics.hxx index f3e3de3394dd..a51690c14104 100644 --- a/vcl/inc/qt5/QtSvpGraphics.hxx +++ b/vcl/inc/qt5/QtSvpGraphics.hxx @@ -48,7 +48,7 @@ public: virtual void GetResolution(sal_Int32& rDPIX, sal_Int32& rDPIY) override; - virtual OUString getRenderBackendName() const override { return u"qt5svp"_ustr; } + virtual OUString getRenderBackendName() const override { return u"qtsvp"_ustr; } }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |