summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binaryurp/source/bridge.cxx3
-rw-r--r--binaryurp/source/reader.cxx3
-rw-r--r--chart2/source/controller/main/ChartController_Window.cxx8
-rw-r--r--connectivity/source/commontools/dbtools.cxx4
-rw-r--r--connectivity/source/drivers/firebird/StatementCommonBase.cxx6
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx14
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx6
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx6
-rw-r--r--sw/source/core/access/acctable.cxx10
9 files changed, 29 insertions, 31 deletions
diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index 1037fe2404d4..54214c393dd5 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -864,8 +864,7 @@ css::uno::Reference< css::uno::XInterface > Bridge::getInstance(
" character");
}
}
- css::uno::TypeDescription ifc(
- cppu::UnoType< css::uno::Reference< css::uno::XInterface > >::get());
+ css::uno::TypeDescription ifc(cppu::UnoType<css::uno::XInterface>::get());
typelib_TypeDescription * p = ifc.get();
std::vector< BinaryAny > inArgs;
inArgs.push_back(
diff --git a/binaryurp/source/reader.cxx b/binaryurp/source/reader.cxx
index 880b1ad99d20..99ad7c41c1e5 100644
--- a/binaryurp/source/reader.cxx
+++ b/binaryurp/source/reader.cxx
@@ -215,8 +215,7 @@ void Reader::readMessage(Unmarshal & unmarshal) {
css::uno::UnoInterfaceReference cc;
if (ccMode) {
css::uno::TypeDescription t(
- cppu::UnoType< css::uno::Reference< css::uno::XCurrentContext > >::
- get());
+ cppu::UnoType<css::uno::XCurrentContext>::get());
cc.set(
*static_cast< uno_Interface ** >(
unmarshal.readValue(t).getValue(t)));
diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx
index 23724f428b62..59cbae5769bf 100644
--- a/chart2/source/controller/main/ChartController_Window.cxx
+++ b/chart2/source/controller/main/ChartController_Window.cxx
@@ -1598,7 +1598,7 @@ sal_Bool SAL_CALL ChartController::select( const uno::Any& rSelection )
bSuccess = true;
}
}
- else if ( rType == cppu::UnoType< uno::Reference< drawing::XShape > >::get() )
+ else if ( rType == cppu::UnoType<drawing::XShape>::get() )
{
uno::Reference< drawing::XShape > xShape;
if ( ( rSelection >>= xShape ) && m_aSelection.setSelection( xShape ) )
@@ -1664,7 +1664,7 @@ sal_Bool SAL_CALL ChartController::select( const uno::Any& rSelection )
return; //behave passive if already disposed or suspended
//--add listener
- m_aLifeTimeManager.m_aListenerContainer.addInterface( cppu::UnoType< uno::Reference< view::XSelectionChangeListener > >::get(), xListener );
+ m_aLifeTimeManager.m_aListenerContainer.addInterface( cppu::UnoType<view::XSelectionChangeListener>::get(), xListener );
}
void SAL_CALL ChartController
@@ -1677,14 +1677,14 @@ sal_Bool SAL_CALL ChartController::select( const uno::Any& rSelection )
return; //behave passive if already disposed or suspended
//--remove listener
- m_aLifeTimeManager.m_aListenerContainer.removeInterface( cppu::UnoType< uno::Reference< view::XSelectionChangeListener > >::get(), xListener );
+ m_aLifeTimeManager.m_aListenerContainer.removeInterface( cppu::UnoType<view::XSelectionChangeListener>::get(), xListener );
}
void ChartController
::impl_notifySelectionChangeListeners()
{
::cppu::OInterfaceContainerHelper* pIC = m_aLifeTimeManager.m_aListenerContainer
- .getContainer( cppu::UnoType< uno::Reference< view::XSelectionChangeListener > >::get() );
+ .getContainer( cppu::UnoType<view::XSelectionChangeListener>::get() );
if( pIC )
{
uno::Reference< view::XSelectionSupplier > xSelectionSupplier(this);
diff --git a/connectivity/source/commontools/dbtools.cxx b/connectivity/source/commontools/dbtools.cxx
index 4815a5737e4d..4f5e3950a573 100644
--- a/connectivity/source/commontools/dbtools.cxx
+++ b/connectivity/source/commontools/dbtools.cxx
@@ -1522,7 +1522,7 @@ bool implUpdateObject(const Reference< XRowUpdate >& _rxUpdatedObject,
break;
case TypeClass_INTERFACE:
- if (_rValue.getValueType() == cppu::UnoType<Reference< XInputStream> >::get())
+ if (_rValue.getValueType() == cppu::UnoType<XInputStream>::get())
{
Reference< XInputStream > xStream;
_rValue >>= xStream;
@@ -1629,7 +1629,7 @@ bool implSetObject( const Reference< XParameters >& _rxParameters,
break;
case TypeClass_INTERFACE:
- if (_rValue.getValueType() == cppu::UnoType<Reference< XInputStream> >::get())
+ if (_rValue.getValueType() == cppu::UnoType<XInputStream>::get())
{
Reference< XInputStream > xStream;
_rValue >>= xStream;
diff --git a/connectivity/source/drivers/firebird/StatementCommonBase.cxx b/connectivity/source/drivers/firebird/StatementCommonBase.cxx
index b642539059b8..6f83c850bad2 100644
--- a/connectivity/source/drivers/firebird/StatementCommonBase.cxx
+++ b/connectivity/source/drivers/firebird/StatementCommonBase.cxx
@@ -90,9 +90,9 @@ Any SAL_CALL OStatementCommonBase::queryInterface( const Type & rType ) throw(Ru
Sequence< Type > SAL_CALL OStatementCommonBase::getTypes( ) throw(RuntimeException, std::exception)
{
::cppu::OTypeCollection aTypes(
- ::cppu::UnoType< uno::Reference< XMultiPropertySet > >::get(),
- ::cppu::UnoType< uno::Reference< XFastPropertySet > >::get(),
- ::cppu::UnoType< uno::Reference< XPropertySet > >::get());
+ ::cppu::UnoType<XMultiPropertySet>::get(),
+ ::cppu::UnoType<XFastPropertySet>::get(),
+ ::cppu::UnoType<XPropertySet>::get());
return concatSequences(aTypes.getTypes(),OStatementCommonBase_Base::getTypes());
}
diff --git a/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx b/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
index 20649fc16579..b9cf6f17b49b 100644
--- a/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
+++ b/odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
@@ -111,7 +111,7 @@ public:
Any MyService1Impl::queryInterface( Type const & type )
throw (RuntimeException)
{
- if (type.equals(::cppu::UnoType< Reference< XInterface > >::get()))
+ if (type.equals(::cppu::UnoType<XInterface>::get()))
{
// return XInterface interface
// (resolve ambiguity by casting to lang::XTypeProvider)
@@ -119,21 +119,21 @@ Any MyService1Impl::queryInterface( Type const & type )
static_cast< lang::XTypeProvider * >( this ) );
return makeAny( x );
}
- if (type.equals(::cppu::UnoType< Reference< lang::XTypeProvider > >::get()))
+ if (type.equals(::cppu::UnoType<lang::XTypeProvider>::get()))
{
// return XInterface interface
Reference< XInterface > x(
static_cast< lang::XTypeProvider * >( this ) );
return makeAny( x );
}
- if (type.equals(::cppu::UnoType< Reference< lang::XServiceInfo > >::get()))
+ if (type.equals(::cppu::UnoType<lang::XServiceInfo>::get()))
{
// return XServiceInfo interface
Reference< lang::XServiceInfo > x(
static_cast< lang::XServiceInfo * >( this ) );
return makeAny( x );
}
- if (type.equals(::cppu::UnoType< Reference< ::my_module::XSomething > >::get()))
+ if (type.equals(::cppu::UnoType<my_module::XSomething>::get()))
{
// return sample interface
Reference< ::my_module::XSomething > x(
@@ -166,9 +166,9 @@ Sequence< Type > MyService1Impl::getTypes()
throw (RuntimeException)
{
Sequence< Type > seq( 3 );
- seq[ 0 ] = ::cppu::UnoType< Reference< lang::XTypeProvider > >::get();
- seq[ 1 ] = ::cppu::UnoType< Reference< lang::XServiceInfo > >::get();
- seq[ 2 ] = ::cppu::UnoType< Reference< ::my_module::XSomething > >::get();
+ seq[ 0 ] = ::cppu::UnoType<lang::XTypeProvider>::get();
+ seq[ 1 ] = ::cppu::UnoType<lang::XServiceInfo>::get();
+ seq[ 2 ] = ::cppu::UnoType<my_module::XSomething>::get();
return seq;
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
index 86f103e12b3e..c4847fe50db7 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
@@ -109,9 +109,9 @@ Any SAL_CALL OResultSet::queryInterface( const Type & rType ) throw(RuntimeExcep
Sequence< Type > SAL_CALL OResultSet::getTypes( ) throw( RuntimeException)
{
OTypeCollection aTypes(
- ::cppu::UnoType< Reference< ::com::sun::star::beans::XMultiPropertySet > >::get(),
- ::cppu::UnoType< Reference< ::com::sun::star::beans::XFastPropertySet > >::get(),
- ::cppu::UnoType< Reference< ::com::sun::star::beans::XPropertySet > >::get());
+ ::cppu::UnoType<css::beans::XMultiPropertySet>::get(),
+ ::cppu::UnoType<css::beans::XFastPropertySet>::get(),
+ ::cppu::UnoType<css::beans::XPropertySet>::get());
return concatSequences(aTypes.getTypes(),OResultSet_BASE::getTypes());
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
index f3b1b59b3b86..bc84cc43c9d5 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
@@ -110,9 +110,9 @@ Any SAL_CALL OStatement_Base::queryInterface( const Type & rType ) throw(Runtime
Sequence< Type > SAL_CALL OStatement_Base::getTypes( ) throw(RuntimeException)
{
::cppu::OTypeCollection aTypes(
- ::cppu::UnoType< Reference< XMultiPropertySet > >::get(),
- ::cppu::UnoType< Reference< XFastPropertySet > >::get(),
- ::cppu::UnoType< Reference< XPropertySet > >::get());
+ ::cppu::UnoType<XMultiPropertySet>::get(),
+ ::cppu::UnoType<XFastPropertySet>::get(),
+ ::cppu::UnoType<XPropertySet>::get());
return concatSequences(aTypes.getTypes(),OStatement_BASE::getTypes());
}
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx
index 358296262c8e..763479bf5332 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -851,17 +851,17 @@ uno::Any SwAccessibleTable::queryInterface( const uno::Type& rType )
throw (uno::RuntimeException, std::exception)
{
uno::Any aRet;
- if ( rType == cppu::UnoType< uno::Reference< XAccessibleTable > >::get() )
+ if ( rType == cppu::UnoType<XAccessibleTable>::get() )
{
uno::Reference<XAccessibleTable> xThis( this );
aRet <<= xThis;
}
- else if ( rType == cppu::UnoType< uno::Reference< XAccessibleSelection > >::get() )
+ else if ( rType == cppu::UnoType<XAccessibleSelection>::get() )
{
uno::Reference<XAccessibleSelection> xSelection( this );
aRet <<= xSelection;
}
- else if ( rType == cppu::UnoType< uno::Reference<XAccessibleTableSelection> >::get() )
+ else if ( rType == cppu::UnoType<XAccessibleTableSelection>::get() )
{
uno::Reference<XAccessibleTableSelection> xTableExtent( this );
aRet <<= xTableExtent;
@@ -884,8 +884,8 @@ uno::Sequence< uno::Type > SAL_CALL SwAccessibleTable::getTypes()
aTypes.realloc( nIndex + 2 );
uno::Type* pTypes = aTypes.getArray();
- pTypes[nIndex++] = cppu::UnoType< uno::Reference< XAccessibleSelection > >::get();
- pTypes[nIndex++] = cppu::UnoType< uno::Reference< XAccessibleTable > >::get();
+ pTypes[nIndex++] = cppu::UnoType<XAccessibleSelection>::get();
+ pTypes[nIndex++] = cppu::UnoType<XAccessibleTable>::get();
return aTypes;
}