summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sal/osl/unx/file_path_helper.cxx2
-rw-r--r--sal/qa/rtl/doublelock/rtl_doublelocking.cxx2
-rw-r--r--sal/rtl/bootstrap.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/file_path_helper.cxx b/sal/osl/unx/file_path_helper.cxx
index 12532e03c01f..584279cff841 100644
--- a/sal/osl/unx/file_path_helper.cxx
+++ b/sal/osl/unx/file_path_helper.cxx
@@ -35,7 +35,7 @@ static const OUString FPH_LOCAL_DIR_ENTRY()
{ return OUString(FPH_CHAR_DOT); }
static const OUString FPH_PARENT_DIR_ENTRY()
-{ return OUString(".."); }
+{ return ".."; }
void osl_systemPathRemoveSeparator(rtl_uString* pustrPath)
{
diff --git a/sal/qa/rtl/doublelock/rtl_doublelocking.cxx b/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
index 17e39f79cb20..384b8f59392a 100644
--- a/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
+++ b/sal/qa/rtl/doublelock/rtl_doublelocking.cxx
@@ -47,7 +47,7 @@
namespace {
struct Gregorian : public rtl::StaticWithInit<OUString, Gregorian> {
const OUString operator () () {
- return OUString( CONST_TEST_STRING );
+ return CONST_TEST_STRING;
}
};
}
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 4a913f5fef3a..4417246e9eea 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -104,7 +104,7 @@ OUString recursivelyExpandMacros(
if (requestStack->file == requestFile &&
requestStack->key == requestKey)
{
- return OUString("***RECURSION DETECTED***");
+ return "***RECURSION DETECTED***";
}
}
ExpandRequestLink link = { requestStack, requestFile, requestKey };