From 17e74bf1a0ca19bd7f555716408d318f5193e1bd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 1 Apr 2015 08:36:20 +0200 Subject: Replace remaining getCppuType et al with cppu::UnoType Change-Id: Id2361bd7b50f4724211661b024583b8a3445500b --- connectivity/source/commontools/parameters.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'connectivity/source/commontools/parameters.cxx') diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx index 1b512a0464bd..84ad4e4f8bed 100644 --- a/connectivity/source/commontools/parameters.cxx +++ b/connectivity/source/commontools/parameters.cxx @@ -78,7 +78,7 @@ namespace dbtools m_xComponent = _rxComponent; m_xAggregatedRowSet = _rxComponentAggregate; if ( m_xAggregatedRowSet.is() ) - m_xAggregatedRowSet->queryAggregation( ::getCppuType( &m_xInnerParamUpdate ) ) >>= m_xInnerParamUpdate; + m_xAggregatedRowSet->queryAggregation( cppu::UnoType::get() ) >>= m_xInnerParamUpdate; OSL_ENSURE( m_xComponent.get().is() && m_xInnerParamUpdate.is(), "ParameterManager::initialize: invalid arguments!" ); if ( !m_xComponent.get().is() || !m_xInnerParamUpdate.is() ) return; @@ -508,7 +508,7 @@ namespace dbtools // an additional restriction (which we created ourself) // So we need to update all information about our inner parameter columns Reference< XPropertySet > xDirectRowSetProps; - m_xAggregatedRowSet->queryAggregation( ::getCppuType( &xDirectRowSetProps ) ) >>= xDirectRowSetProps; + m_xAggregatedRowSet->queryAggregation( cppu::UnoType::get() ) >>= xDirectRowSetProps; OSL_VERIFY( initializeComposerByComponent( xDirectRowSetProps ) ); collectInnerParameters( true ); } -- cgit