From 66f2c35fac22a235a1e491824126f105e6d3869c Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Tue, 4 Mar 2014 12:55:07 -0600 Subject: de-macroize XINTERFACE_DECL Change-Id: Iaa1cf999189f6b62547c208eadc38150400ca0fe Reviewed-on: https://gerrit.libreoffice.org/8454 Reviewed-by: Norbert Thiebaud Tested-by: Norbert Thiebaud --- ucbhelper/source/client/content.cxx | 7 ++++++- ucbhelper/source/provider/resultset.cxx | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'ucbhelper') diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx index e1ef0bb281bb..2cffd349e300 100644 --- a/ucbhelper/source/client/content.cxx +++ b/ucbhelper/source/client/content.cxx @@ -143,7 +143,12 @@ public: : m_rContent( rContent ) {} // XInterface - XINTERFACE_DECL() + virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) + throw( css::uno::RuntimeException, std::exception ); + virtual void SAL_CALL acquire() + throw(); + virtual void SAL_CALL release() + throw(); // XContentEventListener virtual void SAL_CALL contentEvent( const ContentEvent& evt ) diff --git a/ucbhelper/source/provider/resultset.cxx b/ucbhelper/source/provider/resultset.cxx index 3b8c9073de13..6202e4c40c06 100644 --- a/ucbhelper/source/provider/resultset.cxx +++ b/ucbhelper/source/provider/resultset.cxx @@ -99,7 +99,12 @@ public: virtual ~PropertySetInfo(); // XInterface - XINTERFACE_DECL() + virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) + throw( css::uno::RuntimeException, std::exception ); + virtual void SAL_CALL acquire() + throw(); + virtual void SAL_CALL release() + throw(); // XTypeProvider XTYPEPROVIDER_DECL() -- cgit