summaryrefslogtreecommitdiff
path: root/svl/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-07-29 08:26:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-07-29 08:26:29 +0200
commita95d1eff071cfafb7e072f6ba82fd04989a76ea9 (patch)
tree64bdce5b97fe17bc0462fefc2b1cb2cdfa3eaabb /svl/source
parentf1b77bf3715b7a28cf4a9afd5f47b3e20d50ca36 (diff)
Remove effectively unused INetURLObject OString overloads
Change-Id: Icbbe27b229d5454d27be646e00e8b362a77359b3
Diffstat (limited to 'svl/source')
-rw-r--r--svl/source/misc/inethist.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx
index 167ccdc4909b..cb14845a3b3a 100644
--- a/svl/source/misc/inethist.cxx
+++ b/svl/source/misc/inethist.cxx
@@ -430,14 +430,14 @@ void INetURLHistory::NormalizeUrl_Impl (INetURLObject &rUrl)
if (!rUrl.HasPort())
rUrl.SetPort (INETHIST_DEF_HTTP_PORT);
if (!rUrl.HasURLPath())
- rUrl.SetURLPath (OString("/"));
+ rUrl.SetURLPath("/");
break;
case INET_PROT_HTTPS:
if (!rUrl.HasPort())
rUrl.SetPort (INETHIST_DEF_HTTPS_PORT);
if (!rUrl.HasURLPath())
- rUrl.SetURLPath (OString("/"));
+ rUrl.SetURLPath("/");
break;
default: