summaryrefslogtreecommitdiff
path: root/unotest/source/cpp/getargument.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-18 13:38:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-18 14:12:36 +0100
commit484401bb5e2aaea5cb1645743ed615f4166b6cda (patch)
tree3721b0b35fe3da541bd241f0911f453b30de78ca /unotest/source/cpp/getargument.cxx
parent9c9276c9e1d6cd2b9bd4bb69349dfb6fb32e6bf3 (diff)
unotest: Use appropriate OUString functions on string constants
Change-Id: I449587dd8e6e625e886e4ffc6419c612adffcfde
Diffstat (limited to 'unotest/source/cpp/getargument.cxx')
-rw-r--r--unotest/source/cpp/getargument.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/unotest/source/cpp/getargument.cxx b/unotest/source/cpp/getargument.cxx
index 00206497f432..7a7e765e0eb1 100644
--- a/unotest/source/cpp/getargument.cxx
+++ b/unotest/source/cpp/getargument.cxx
@@ -32,8 +32,7 @@ namespace detail {
bool getArgument(OUString const & name, OUString * value) {
OSL_ASSERT(value != 0);
- return rtl::Bootstrap::get(
- OUString("arg-") + name, *value);
+ return rtl::Bootstrap::get("arg-" + name, *value);
}
}