[Libreoffice-commits] .: binfilter/bf_svtools

Stephan Bergmann sbergmann at kemper.freedesktop.org
Wed Feb 22 10:40:49 PST 2012


 binfilter/bf_svtools/source/misc1/svt_inethist.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e23a672b0f50b46764b3e73770c86be41b61da69
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Feb 22 19:40:25 2012 +0100

    Adapt to new rtl::OUString ctor

diff --git a/binfilter/bf_svtools/source/misc1/svt_inethist.cxx b/binfilter/bf_svtools/source/misc1/svt_inethist.cxx
index 73a30a5..5637339 100644
--- a/binfilter/bf_svtools/source/misc1/svt_inethist.cxx
+++ b/binfilter/bf_svtools/source/misc1/svt_inethist.cxx
@@ -453,14 +453,14 @@ void INetURLHistory::NormalizeUrl_Impl (INetURLObject &rUrl)
             if (!rUrl.HasPort())
                 rUrl.SetPort (INETHIST_DEF_HTTP_PORT);
             if (!rUrl.HasURLPath())
-                rUrl.SetURLPath ("/");
+                rUrl.SetURLPath(rtl::OString("/"));
             break;
 
         case INET_PROT_HTTPS:
             if (!rUrl.HasPort())
                 rUrl.SetPort (INETHIST_DEF_HTTPS_PORT);
             if (!rUrl.HasURLPath())
-                rUrl.SetURLPath ("/");
+                rUrl.SetURLPath(rtl::OString("/"));
             break;
 
         default:


More information about the Libreoffice-commits mailing list