diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 15:41:50 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-05 09:44:19 -0600 |
commit | a5aad2ac58f01702b91db051e66e2e855de00b10 (patch) | |
tree | 22a3cde45a9e2b3c41b802e9d3a548c2562cc8dd /include/ucbhelper | |
parent | 2ef98b947e8babddeaf5b67e580ba2f184c0e157 (diff) |
kill XINTERFACE_IMPL_9
Change-Id: I651599cf3ec82a31f3260985907b5b2d56665da3
Diffstat (limited to 'include/ucbhelper')
-rw-r--r-- | include/ucbhelper/macros.hxx | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx index b745f4073b93..c7f87f33de97 100644 --- a/include/ucbhelper/macros.hxx +++ b/include/ucbhelper/macros.hxx @@ -89,36 +89,6 @@ com::sun::star::uno::Any SAL_CALL Class::queryInterface( \ }\ // 9 interfaces implemented -#define XINTERFACE_IMPL_9( Class,I1,I2,I3,I4,I5,I6,I7,I8,I9 ) \ -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)), \ - (static_cast< I7* >(this)), \ - (static_cast< I8* >(this)), \ - (static_cast< I9* >(this)) \ - ); \ - return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); \ -}\ - // XTypeProvider decl. |