diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-20 09:51:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-20 13:34:43 +0200 |
commit | b08a2b299418db84a71fe625f127f0484746010e (patch) | |
tree | 544ad8a8c1d6c9b12f27f1771fe27ab8714ab4d4 /vcl/qt5 | |
parent | bff2b8bf2b0ae47f6e59639db0544212398363ac (diff) |
use OUString::Concat here, not OUStringLiteral
Change-Id: Ia2172bcab60f32c9d9d4f6ca0230484343eef69b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114321
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qt5')
-rw-r--r-- | vcl/qt5/Qt5Instance.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qt5/Qt5Instance.cxx b/vcl/qt5/Qt5Instance.cxx index 3ea129b8aeea..95332b442530 100644 --- a/vcl/qt5/Qt5Instance.cxx +++ b/vcl/qt5/Qt5Instance.cxx @@ -200,9 +200,9 @@ OUString Qt5Instance::constructToolkitID(std::u16string_view sTKname) { OUString sID(sTKname + OUStringLiteral(u" (")); if (m_bUseCairo) - sID += OUStringLiteral(u"cairo+"); + sID += "cairo+"; else - sID += OUStringLiteral(u"qfont+"); + sID += "qfont+"; sID += toOUString(QGuiApplication::platformName()) + OUStringLiteral(u")"); return sID; } |