summaryrefslogtreecommitdiff
path: root/unotest/source/cpp/getargument.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-12 14:44:42 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-12 21:02:26 +0100
commit413fe6c65a8dfbb5549da200f4523ef2347e11f8 (patch)
tree142be3ce0eb36e9a07dfabaeb92a2f0bafd516e8 /unotest/source/cpp/getargument.cxx
parent32ac07a9296ce2cfaaef57c177b3d88e75b28f23 (diff)
Removed RTL_CONSTASCII_(U)STRINGPARAM in unotest
Change-Id: Iba14ed093bcb97ac1f6996e62e6191cf09574bfd
Diffstat (limited to 'unotest/source/cpp/getargument.cxx')
-rw-r--r--unotest/source/cpp/getargument.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotest/source/cpp/getargument.cxx b/unotest/source/cpp/getargument.cxx
index 7b1945d5d803..83a4a02d2856 100644
--- a/unotest/source/cpp/getargument.cxx
+++ b/unotest/source/cpp/getargument.cxx
@@ -33,7 +33,7 @@ namespace detail {
bool getArgument(rtl::OUString const & name, rtl::OUString * value) {
OSL_ASSERT(value != 0);
return rtl::Bootstrap::get(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("arg-")) + name, *value);
+ rtl::OUString("arg-") + name, *value);
}
}