diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2010-12-15 07:53:02 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-12-15 07:53:02 +0100 |
commit | 1a270c0a680140c86fa28590f16b79e0762798d9 (patch) | |
tree | 89551a4b9305b69355f31124fcf3f6efcabdc749 /sal | |
parent | 48d5ec0b334c19a52cc0e2d309b2dd7a3ec1c3f9 (diff) |
RTL_CONSTASCII_USTRINGPARAM qa/rtl/process
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/rtl/process/rtl_Process_Const.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sal/qa/rtl/process/rtl_Process_Const.h b/sal/qa/rtl/process/rtl_Process_Const.h index 15b745466d76..106af3c73cf1 100644 --- a/sal/qa/rtl/process/rtl_Process_Const.h +++ b/sal/qa/rtl/process/rtl_Process_Const.h @@ -13,11 +13,10 @@ extern "C" { #endif //------------------------------------------------------------------------ -//::rtl::OUString suParam[4]; -::rtl::OUString suParam0 = ::rtl::OUString::createFromAscii("-join"); -::rtl::OUString suParam1 = OUString::createFromAscii("-with"); -::rtl::OUString suParam2 = OUString::createFromAscii("-child"); -::rtl::OUString suParam3 = OUString::createFromAscii("-process"); +::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")); //------------------------------------------------------------------------ #ifdef __cplusplus |