summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 13:17:17 +0200
committerNoel Grandin <noel@peralex.com>2013-11-07 13:22:56 +0200
commit58fa3d50aa43102cea8690fd6bf51fb80c007955 (patch)
tree3da290f9feccce7841ef0bc26d37755acee655a6 /xmlhelp/source/cxxhelp/provider/urlparameter.cxx
parentc87a8fc6488dcbb2378acbfa921ec2d7ced0a73a (diff)
remove unnecessary use of OUString constructor in XMLHELP module
Change-Id: I033bcf9cddc58f605fe8d65731f8b312410da7e5
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/urlparameter.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/urlparameter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
index 6ea53045ec22..9ac95e644580 100644
--- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
+++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
@@ -167,7 +167,7 @@ OUString URLParameter::get_title()
m_aTitle = inf->get_title();
}
else // This must be the root
- m_aTitle = OUString("root");
+ m_aTitle = "root";
return m_aTitle;
}
@@ -610,7 +610,7 @@ bool URLParameter::query()
if( delimIdx == -1 )
{
value = query_.copy( equalIdx + 1 ).trim();
- query_ = OUString();
+ query_ = "";
}
else
{