summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-01 09:57:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-01 13:19:04 +0200
commit664de5a816bdcb68ada087f99ef5a76139890fdf (patch)
tree30dca6260b95bf402930be3eb33766923182b1c1 /vcl
parentf88160d640b3efe4ffdf8126795a56d25d83944d (diff)
loplugin:stringconstant (clang-cl)
Change-Id: Id1a82cea4444255fdb693e126b7571a406094624 Reviewed-on: https://gerrit.libreoffice.org/79916 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/IconThemeSelector.cxx2
-rw-r--r--vcl/source/components/dtranscomp.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/IconThemeSelector.cxx b/vcl/source/app/IconThemeSelector.cxx
index 6eec4a52b777..225414fcc8b7 100644
--- a/vcl/source/app/IconThemeSelector.cxx
+++ b/vcl/source/app/IconThemeSelector.cxx
@@ -57,7 +57,7 @@ IconThemeSelector::GetIconThemeForDesktopEnvironment(const OUString& desktopEnvi
#ifdef _WIN32
(void)desktopEnvironment;
- return OUString("colibre");
+ return "colibre";
#else
OUString r;
if ( desktopEnvironment.equalsIgnoreAsciiCase("plasma5") ||
diff --git a/vcl/source/components/dtranscomp.cxx b/vcl/source/components/dtranscomp.cxx
index 0b2245bbd2f0..380719541311 100644
--- a/vcl/source/components/dtranscomp.cxx
+++ b/vcl/source/components/dtranscomp.cxx
@@ -319,7 +319,7 @@ OUString DragSource_getImplementationName()
#elif defined UNX
return "com.sun.star.datatransfer.dnd.XdndSupport";
#else
- return OUString("com.sun.star.datatransfer.dnd.VclGenericDragSource");
+ return "com.sun.star.datatransfer.dnd.VclGenericDragSource";
#endif
}