diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 15:22:44 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-05 09:44:18 -0600 |
commit | 2ef98b947e8babddeaf5b67e580ba2f184c0e157 (patch) | |
tree | 8d0e6fd2a00d5df73aed0580a4bcc7f9a700f380 /include | |
parent | fbf7bd25b0d6e4b37d36f0fa227bf20faf0d6db1 (diff) |
kill XINTERFACE_IMPL_6
Change-Id: I1445524d3c15a3dec881c1499910779b9d61b840
Diffstat (limited to 'include')
-rw-r--r-- | include/ucbhelper/macros.hxx | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx index 791e3522f7d0..b745f4073b93 100644 --- a/include/ucbhelper/macros.hxx +++ b/include/ucbhelper/macros.hxx @@ -88,34 +88,6 @@ com::sun::star::uno::Any SAL_CALL Class::queryInterface( \ return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); \ }\ -// 6 interfaces implemented -#define XINTERFACE_IMPL_6( Class,I1,I2,I3,I4,I5,I6 ) \ -void SAL_CALL Class::acquire() \ - throw() \ -{ \ - OWeakObject::acquire(); \ -} \ - \ -void SAL_CALL Class::release() \ - throw() \ -{ \ - OWeakObject::release(); \ -} \ -com::sun::star::uno::Any SAL_CALL Class::queryInterface( \ - const com::sun::star::uno::Type & rType ) \ - throw( com::sun::star::uno::RuntimeException, std::exception ) \ -{ \ - com::sun::star::uno::Any aRet = cppu::queryInterface( rType, \ - (static_cast< I1* >(this)), \ - (static_cast< I2* >(this)), \ - (static_cast< I3* >(this)), \ - (static_cast< I4* >(this)), \ - (static_cast< I5* >(this)), \ - (static_cast< I6* >(this)) \ - ); \ - return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); \ -}\ - // 9 interfaces implemented #define XINTERFACE_IMPL_9( Class,I1,I2,I3,I4,I5,I6,I7,I8,I9 ) \ void SAL_CALL Class::acquire() \ |