summaryrefslogtreecommitdiffstats
path: root/extensions/test
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 /extensions/test
parentfdo#43157 : clean up OSL_POSTCOND (diff)
downloadcore-5babf1b9037eb283798322eecd8334e6ff1db655.tar.gz
core-5babf1b9037eb283798322eecd8334e6ff1db655.zip
remove unnecessary scope qualifier from sal_Bool uses
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
Diffstat (limited to 'extensions/test')
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx
index 150d3ff417b4..1e02b3601b4c 100644
--- a/extensions/test/ole/cpnt/cpnt.cxx
+++ b/extensions/test/ole/cpnt/cpnt.cxx
@@ -186,8 +186,8 @@ public: // XTestSequence
virtual void SAL_CALL setAFloat( float _afloat ) throw (RuntimeException);
virtual double SAL_CALL getADouble() throw (RuntimeException);
virtual void SAL_CALL setADouble( double _adouble ) throw (RuntimeException);
- virtual ::sal_Bool SAL_CALL getABool() throw (RuntimeException);
- virtual void SAL_CALL setABool( ::sal_Bool _abool ) throw (RuntimeException);
+ virtual sal_Bool SAL_CALL getABool() throw (RuntimeException);
+ virtual void SAL_CALL setABool( sal_Bool _abool ) throw (RuntimeException);
virtual ::sal_Int16 SAL_CALL getAShort() throw (RuntimeException);
virtual void SAL_CALL setAShort( ::sal_Int16 _ashort ) throw (RuntimeException);
virtual ::sal_uInt16 SAL_CALL getAUShort() throw (RuntimeException);
@@ -743,12 +743,12 @@ void SAL_CALL OComponent::setADouble( double _adouble ) throw (RuntimeException)
m_attr_double = _adouble;
}
-::sal_Bool SAL_CALL OComponent::getABool() throw (RuntimeException)
+sal_Bool SAL_CALL OComponent::getABool() throw (RuntimeException)
{
return m_attr_bool;
}
-void SAL_CALL OComponent::setABool( ::sal_Bool _abool ) throw (RuntimeException)
+void SAL_CALL OComponent::setABool( sal_Bool _abool ) throw (RuntimeException)
{
m_attr_bool = _abool;
}