summaryrefslogtreecommitdiffstats
path: root/connectivity/source/commontools/parameters.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:20 +0200
commit17e74bf1a0ca19bd7f555716408d318f5193e1bd (patch)
tree900b27ceff19e6204aebba4a729cf7dbc2cb719a /connectivity/source/commontools/parameters.cxx
parentReplace remaining getCppuType et al with cppu::UnoType (diff)
downloadcore-17e74bf1a0ca19bd7f555716408d318f5193e1bd.tar.gz
core-17e74bf1a0ca19bd7f555716408d318f5193e1bd.zip
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Id2361bd7b50f4724211661b024583b8a3445500b
Diffstat (limited to 'connectivity/source/commontools/parameters.cxx')
-rw-r--r--connectivity/source/commontools/parameters.cxx4
1 files changed, 2 insertions, 2 deletions
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<decltype(m_xInnerParamUpdate)>::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<decltype(xDirectRowSetProps)>::get() ) >>= xDirectRowSetProps;
OSL_VERIFY( initializeComposerByComponent( xDirectRowSetProps ) );
collectInnerParameters( true );
}