diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-05 16:25:03 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-07 20:00:16 +0000 |
commit | 009851223b5ced4ed2662af2e2ae81c0f9200e45 (patch) | |
tree | a8ab339589ea23b98513d394eabc4f135e69ccae /svl/source/misc | |
parent | 35b42a9d1282a92dbc9a7fbc51d279812070688c (diff) |
module svl: all String and some bool and related clean-up
Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed
Reviewed-on: https://gerrit.libreoffice.org/4733
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'svl/source/misc')
-rw-r--r-- | svl/source/misc/inethist.cxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx index 7dda81a7c621..167ccdc4909b 100644 --- a/svl/source/misc/inethist.cxx +++ b/svl/source/misc/inethist.cxx @@ -26,7 +26,6 @@ #include "rtl/crc.h" #include <tools/solar.h> #include <tools/debug.hxx> -#include <tools/string.hxx> #include <tools/urlobj.hxx> /*======================================================================== @@ -201,8 +200,8 @@ public: /** putUrl/queryUrl. */ - void putUrl (const String &rUrl); - sal_Bool queryUrl (const String &rUrl); + void putUrl (const OUString &rUrl); + sal_Bool queryUrl (const OUString &rUrl); }; /*======================================================================== @@ -292,7 +291,7 @@ void INetURLHistory_Impl::move (sal_uInt16 nSI, sal_uInt16 nDI) /* * putUrl. */ -void INetURLHistory_Impl::putUrl (const String &rUrl) +void INetURLHistory_Impl::putUrl (const OUString &rUrl) { sal_uInt32 h = crc32 (rUrl); sal_uInt16 k = find (h); @@ -349,7 +348,7 @@ void INetURLHistory_Impl::putUrl (const String &rUrl) /* * queryUrl. */ -sal_Bool INetURLHistory_Impl::queryUrl (const String &rUrl) +sal_Bool INetURLHistory_Impl::queryUrl (const OUString &rUrl) { sal_uInt32 h = crc32 (rUrl); sal_uInt16 k = find (h); @@ -417,8 +416,7 @@ void INetURLHistory::NormalizeUrl_Impl (INetURLObject &rUrl) case INET_PROT_FILE: if (!rUrl.IsCaseSensitive()) { - String aPath (rUrl.GetURLPath(INetURLObject::NO_DECODE)); - aPath.ToLowerAscii(); + OUString aPath (rUrl.GetURLPath(INetURLObject::NO_DECODE).toAsciiLowerCase()); rUrl.SetURLPath (aPath, INetURLObject::NOT_CANONIC); } break; |