From 127f70d66ac32b7a4ec818adaf1bdccb71865ee5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 21 Jul 2016 14:23:23 +0200 Subject: new loplugin to check for static OUStrings that are better declared as OUStringLiteral Change-Id: Ifb5d9a12bb31a68641940bec16971a8181a46567 Reviewed-on: https://gerrit.libreoffice.org/27377 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- sal/qa/osl/process/osl_process.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sal/qa') diff --git a/sal/qa/osl/process/osl_process.cxx b/sal/qa/osl/process/osl_process.cxx index bb1856de76a9..41280a6e7582 100644 --- a/sal/qa/osl/process/osl_process.cxx +++ b/sal/qa/osl/process/osl_process.cxx @@ -67,9 +67,9 @@ #endif #if defined(_WIN32) - const rtl::OUString EXECUTABLE_NAME ("osl_process_child.exe"); + const rtl::OUStringLiteral EXECUTABLE_NAME ("osl_process_child.exe"); #else - const rtl::OUString EXECUTABLE_NAME ("osl_process_child"); + const rtl::OUStringLiteral EXECUTABLE_NAME ("osl_process_child"); #endif using namespace osl; -- cgit