diff options
author | Noel Grandin <noel@peralex.com> | 2013-12-13 11:10:10 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-17 11:49:04 +0200 |
commit | 8548abbac5139569818516ca198c8086f4d1fd1f (patch) | |
tree | 5bc09f193859dd63fbf2e3e602ab3b6667904e8c /scripting | |
parent | 909b27df488f3c84ab8e5be9a7513a83b7c4b0c1 (diff) |
Remove unnecessary use of OUString constructor in OUStringBuffer::append calls
Convert code like
aStrBuffer.append(OUString(" AS "));
to
aStrBuffer.append(" AS ");
Change-Id: I8c1884b5a875f40f0b5e511b6ef38c6c8eeee656
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/provider/URIHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/source/provider/URIHelper.cxx b/scripting/source/provider/URIHelper.cxx index 4d5a7a54a9a3..6b49525b9575 100644 --- a/scripting/source/provider/URIHelper.cxx +++ b/scripting/source/provider/URIHelper.cxx @@ -246,7 +246,7 @@ ScriptingFrameworkURIHelper::getStorageURI(const OUString& rScriptURI) OUStringBuffer buf(120); buf.append(m_sBaseURI); - buf.append(OUString("/")); + buf.append("/"); buf.append(getLanguagePath(sLanguagePart)); OUString result = buf.makeStringAndClear(); |