summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-13 11:24:35 +0200
committerNoel Grandin <noel@peralex.com>2013-12-17 11:49:05 +0200
commit2ac31b06ae4895fe5d9be51403774a96b89919af (patch)
treeb9500b59350dcb650d4e05283e4e9a835b879b91 /tools
parent8548abbac5139569818516ca198c8086f4d1fd1f (diff)
Unnecessary use of OUString constructor inside OUStringBuffer constructor
Convert code like: OUStringBuffer sVal(OUString("0x")); to: OUStringBuffer sVal("0x"); Change-Id: Idc5a3f6a8bf1dc33f93c2b488f866c8ea58d582a
Diffstat (limited to 'tools')
-rw-r--r--tools/source/fsys/urlobj.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 99f0eeba5295..441770d5dd46 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -4661,7 +4661,7 @@ bool INetURLObject::setFSysPath(OUString const & rFSysPath,
break;
}
- OUStringBuffer aSynAbsURIRef(OUString("file://"));
+ OUStringBuffer aSynAbsURIRef("file://");
switch (eStyle)
{