From 7ec9ea3c52609f033c57d9af90d334583e32b80e Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Tue, 4 Mar 2014 13:23:41 -0600 Subject: de-macroize QUERYINTERFACE_IMPL_START QUERYINTERFACE_IMPL_END Change-Id: I152d82e34446111cead4b060f789260552d5920d --- ucb/source/cacher/contentresultsetwrapper.cxx | 29 ++++++++++++++------------- ucb/source/cacher/dynamicresultsetwrapper.cxx | 20 +++++++++--------- 2 files changed, 26 insertions(+), 23 deletions(-) (limited to 'ucb') diff --git a/ucb/source/cacher/contentresultsetwrapper.cxx b/ucb/source/cacher/contentresultsetwrapper.cxx index 42c16c2e1ad1..dfa4c9b2fb8d 100644 --- a/ucb/source/cacher/contentresultsetwrapper.cxx +++ b/ucb/source/cacher/contentresultsetwrapper.cxx @@ -338,20 +338,21 @@ sal_Bool SAL_CALL ContentResultSetWrapper // XInterface methods. -//list all interfaces inclusive baseclasses of interfaces -QUERYINTERFACE_IMPL_START( ContentResultSetWrapper ) - - (static_cast< XComponent* >(this)), - (static_cast< XCloseable* >(this)), - (static_cast< XResultSetMetaDataSupplier* >(this)), - (static_cast< XPropertySet* >(this)), - - (static_cast< XContentAccess* >(this)), - (static_cast< XResultSet* >(this)), - (static_cast< XRow* >(this)) - -QUERYINTERFACE_IMPL_END - +css::uno::Any SAL_CALL ContentResultSetWrapper::queryInterface( const css::uno::Type & rType ) + throw( css::uno::RuntimeException, std::exception ) +{ + //list all interfaces inclusive baseclasses of interfaces + css::uno::Any aRet = cppu::queryInterface( rType, + (static_cast< XComponent* >(this)), + (static_cast< XCloseable* >(this)), + (static_cast< XResultSetMetaDataSupplier* >(this)), + (static_cast< XPropertySet* >(this)), + (static_cast< XContentAccess* >(this)), + (static_cast< XResultSet* >(this)), + (static_cast< XRow* >(this)) + ); + return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); +} // XComponent methods. diff --git a/ucb/source/cacher/dynamicresultsetwrapper.cxx b/ucb/source/cacher/dynamicresultsetwrapper.cxx index 3e777ca9abe0..caf63780aed7 100644 --- a/ucb/source/cacher/dynamicresultsetwrapper.cxx +++ b/ucb/source/cacher/dynamicresultsetwrapper.cxx @@ -121,16 +121,18 @@ void SAL_CALL DynamicResultSetWrapper m_xMyResultTwo = xResultSet; } - // XInterface methods. - -//list all interfaces inclusive baseclasses of interfaces -QUERYINTERFACE_IMPL_START( DynamicResultSetWrapper ) - (static_cast< XComponent* >(this)) //base of XDynamicResultSet - , (static_cast< XDynamicResultSet* >(this)) - , (static_cast< XSourceInitialization* >(this)) -QUERYINTERFACE_IMPL_END - +css::uno::Any SAL_CALL DynamicResultSetWrapper::queryInterface( const css::uno::Type & rType ) + throw( css::uno::RuntimeException, std::exception ) +{ + //list all interfaces inclusive baseclasses of interfaces + css::uno::Any aRet = cppu::queryInterface( rType, + (static_cast< XComponent* >(this)), //base of XDynamicResultSet + (static_cast< XDynamicResultSet* >(this)), + (static_cast< XSourceInitialization* >(this)) + ); + return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); +} // XComponent methods. -- cgit