diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 13:52:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 13:54:02 +0200 |
commit | 5babf1b9037eb283798322eecd8334e6ff1db655 (patch) | |
tree | a6be386ebc21a7e0c47b5ac78279edc873cf0578 /vbahelper/source/msforms/vbasystemaxcontrol.cxx | |
parent | c03c9da8c249c2e2a61bab3d6fad325d5934f5e0 (diff) |
remove unnecessary scope qualifier from sal_Bool uses
i.e. convert "::sal_Bool" to "sal_Bool"
Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
Diffstat (limited to 'vbahelper/source/msforms/vbasystemaxcontrol.cxx')
-rw-r--r-- | vbahelper/source/msforms/vbasystemaxcontrol.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/msforms/vbasystemaxcontrol.cxx b/vbahelper/source/msforms/vbasystemaxcontrol.cxx index a0fd441cb955..016224a05755 100644 --- a/vbahelper/source/msforms/vbasystemaxcontrol.cxx +++ b/vbahelper/source/msforms/vbasystemaxcontrol.cxx @@ -57,14 +57,14 @@ uno::Any SAL_CALL VbaSystemAXControl::getValue( const OUString& aPropertyName ) } -::sal_Bool SAL_CALL VbaSystemAXControl::hasMethod( const OUString& aName ) +sal_Bool SAL_CALL VbaSystemAXControl::hasMethod( const OUString& aName ) throw ( uno::RuntimeException, std::exception ) { return m_xControlInvocation->hasMethod( aName ); } -::sal_Bool SAL_CALL VbaSystemAXControl::hasProperty( const OUString& aName ) +sal_Bool SAL_CALL VbaSystemAXControl::hasProperty( const OUString& aName ) throw ( uno::RuntimeException, std::exception ) { return m_xControlInvocation->hasProperty( aName ); |