summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-03 13:52:06 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 13:54:02 +0200
commit5babf1b9037eb283798322eecd8334e6ff1db655 (patch)
treea6be386ebc21a7e0c47b5ac78279edc873cf0578 /stoc
parentc03c9da8c249c2e2a61bab3d6fad325d5934f5e0 (diff)
remove unnecessary scope qualifier from sal_Bool uses
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx
index 514342841a03..20f450803fcb 100644
--- a/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx
+++ b/stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx
@@ -71,7 +71,7 @@ public:
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.getUriReference(); }
- virtual ::sal_Bool SAL_CALL isAbsolute() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ virtual sal_Bool SAL_CALL isAbsolute() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.isAbsolute(); }
virtual OUString SAL_CALL getScheme()
@@ -82,11 +82,11 @@ public:
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.getSchemeSpecificPart(); }
- virtual ::sal_Bool SAL_CALL isHierarchical()
+ virtual sal_Bool SAL_CALL isHierarchical()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.isHierarchical(); }
- virtual ::sal_Bool SAL_CALL hasAuthority()
+ virtual sal_Bool SAL_CALL hasAuthority()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.hasAuthority(); }
@@ -98,7 +98,7 @@ public:
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.getPath(); }
- virtual ::sal_Bool SAL_CALL hasRelativePath()
+ virtual sal_Bool SAL_CALL hasRelativePath()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.hasRelativePath(); }
@@ -110,14 +110,14 @@ public:
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.getPathSegment(index); }
- virtual ::sal_Bool SAL_CALL hasQuery() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ virtual sal_Bool SAL_CALL hasQuery() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.hasQuery(); }
virtual OUString SAL_CALL getQuery()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.getQuery(); }
- virtual ::sal_Bool SAL_CALL hasFragment() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ virtual sal_Bool SAL_CALL hasFragment() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return base_.hasFragment(); }
virtual OUString SAL_CALL getFragment()
@@ -162,7 +162,7 @@ public:
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual ::sal_Bool SAL_CALL supportsService(
+ virtual sal_Bool SAL_CALL supportsService(
OUString const & serviceName)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
@@ -186,7 +186,7 @@ OUString Parser::getImplementationName()
getImplementationName();
}
-::sal_Bool Parser::supportsService(OUString const & serviceName)
+sal_Bool Parser::supportsService(OUString const & serviceName)
throw (css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, serviceName);