summaryrefslogtreecommitdiff
path: root/include/svl/inethist.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 21:49:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-20 08:17:00 +0100
commit12f1faf7bf7b236f54f740a9f65646749fc266ee (patch)
tree92b570339a02ac977907be12dc8e2e49291d177d /include/svl/inethist.hxx
parent9e183fbfdbfbe364d17f9d36a0b33d2fae89862d (diff)
svl: sal_Bool -> bool
Change-Id: Ic31455a1f5ffffa35d4fdde901dd70734207b6f4
Diffstat (limited to 'include/svl/inethist.hxx')
-rw-r--r--include/svl/inethist.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svl/inethist.hxx b/include/svl/inethist.hxx
index 0e7216bbac8e..96e728a2fecd 100644
--- a/include/svl/inethist.hxx
+++ b/include/svl/inethist.hxx
@@ -47,7 +47,7 @@ class INetURLHistory : public SfxBroadcaster
static void NormalizeUrl_Impl (INetURLObject &rUrl);
SVL_DLLPUBLIC void PutUrl_Impl (const INetURLObject &rUrl);
- SVL_DLLPUBLIC sal_Bool QueryUrl_Impl (const INetURLObject &rUrl);
+ SVL_DLLPUBLIC bool QueryUrl_Impl (const INetURLObject &rUrl);
/** Not implemented.
*/
@@ -61,7 +61,7 @@ public:
/** QueryProtocol.
*/
- sal_Bool QueryProtocol (INetProtocol eProto) const
+ bool QueryProtocol (INetProtocol eProto) const
{
return ((eProto == INET_PROT_FILE ) ||
(eProto == INET_PROT_FTP ) ||
@@ -71,22 +71,22 @@ public:
/** QueryUrl.
*/
- sal_Bool QueryUrl (const INetURLObject &rUrl)
+ bool QueryUrl (const INetURLObject &rUrl)
{
if (QueryProtocol (rUrl.GetProtocol()))
return QueryUrl_Impl (rUrl);
else
- return sal_False;
+ return false;
}
- sal_Bool QueryUrl (const OUString &rUrl)
+ bool QueryUrl (const OUString &rUrl)
{
INetProtocol eProto =
INetURLObject::CompareProtocolScheme (rUrl);
if (QueryProtocol (eProto))
return QueryUrl_Impl (INetURLObject (rUrl));
else
- return sal_False;
+ return false;
}
/** PutUrl.