summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:44:49 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:44:49 +0000
commit1f5ddbb5773c46cb51bef1da3763df9728d3009a (patch)
treee90950ce4eeb61a45686006d9b1a22d88ed38cc5
parentc856d11e095ebfd44e28b4b7709a3007cbde3ca1 (diff)
INTEGRATION: CWS ineturl1 (1.13.116); FILE MERGED
2004/09/30 13:10:09 cmc 1.13.116.1: #i34006# modify INetURLObject to use rtl::OUString and rtl::OUStringBuffer
-rw-r--r--svtools/source/misc/urihelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/misc/urihelper.cxx b/svtools/source/misc/urihelper.cxx
index 16136895efff..70680c584e45 100644
--- a/svtools/source/misc/urihelper.cxx
+++ b/svtools/source/misc/urihelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urihelper.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: hjs $ $Date: 2004-06-25 17:26:33 $
+ * last change: $Author: hr $ $Date: 2004-12-13 12:44:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -702,7 +702,7 @@ URIHelper::removePassword(UniString const & rURI,
INetURLObject aObj(rURI, eEncodeMechanism, eCharset);
return aObj.HasError() ?
rURI :
- aObj.GetURLNoPass(eDecodeMechanism, eCharset);
+ String(aObj.GetURLNoPass(eDecodeMechanism, eCharset));
}
//============================================================================