summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 10:42:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 10:42:57 +0200
commit31e24f487e5a4e917bb35fd396cf9f3ad84982a8 (patch)
tree6e4cbfcd49a8fed02847b8c7719759e09260cf7c /connectivity/source/drivers
parent3e672693e35e720177eac98094c42570fca9cfbb (diff)
Remove redundant Reference<> from within UnoType<> uses
Change-Id: I1aeb9c73c284e39f371e49ded98e8dba0d055056
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r--connectivity/source/drivers/firebird/StatementCommonBase.cxx6
1 files changed, 3 insertions, 3 deletions
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());
}