diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 11:26:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-11 11:26:49 +0100 |
commit | 5e355dabccdbaa94de8897edc1fd88b16993b493 (patch) | |
tree | d427ff646302adbfcf0700116bbe60bf422224df /sal/qa/rtl | |
parent | 3c29d5a502f5140b65b739543194108d45217250 (diff) |
Some loplugin:conststringvar/stringconstant improvements: sal
Change-Id: I8b5d81c2b51f846a24fd1f7f9cdd831f1ea54ea5
Diffstat (limited to 'sal/qa/rtl')
-rw-r--r-- | sal/qa/rtl/process/rtl_Process_Const.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/rtl/process/rtl_Process_Const.h b/sal/qa/rtl/process/rtl_Process_Const.h index 2c0b49679964..8f5c7463c261 100644 --- a/sal/qa/rtl/process/rtl_Process_Const.h +++ b/sal/qa/rtl/process/rtl_Process_Const.h @@ -27,10 +27,10 @@ extern "C" { #endif -::rtl::OUString suParam0(RTL_CONSTASCII_USTRINGPARAM("-join")); -::rtl::OUString suParam1(RTL_CONSTASCII_USTRINGPARAM("-with")); -::rtl::OUString suParam2(RTL_CONSTASCII_USTRINGPARAM("-child")); -::rtl::OUString suParam3(RTL_CONSTASCII_USTRINGPARAM("-process")); +::rtl::OUString suParam0("-join"); +::rtl::OUString suParam1("-with"); +::rtl::OUString suParam2("-child"); +::rtl::OUString suParam3("-process"); #ifdef __cplusplus } |