diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-25 14:53:42 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-25 14:53:42 +0100 |
commit | eb910a227e2d48d53ce0624e1455ea1ed99d412d (patch) | |
tree | 78506cb5e2658aa0e0c991847b20101947169c23 /ucb | |
parent | bf9edb43e0ae0caba3a706cf55e53a84071df139 (diff) |
slidecopy: fixed shadow variable
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ext/ucpext_datasupplier.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.cxx b/ucb/source/ucp/ext/ucpext_datasupplier.cxx index dfdd1df82fd6..a3a9cc6876ff 100644 --- a/ucb/source/ucp/ext/ucpext_datasupplier.cxx +++ b/ucb/source/ucp/ext/ucpext_datasupplier.cxx @@ -264,7 +264,7 @@ namespace ucb { namespace ucp { namespace ext try { Reference< XContent > xContent( m_pImpl->m_xContent->getProvider()->queryContent( xId ) ); - ::rtl::Reference< Content > pContent( dynamic_cast< Content* >( xContent.get() ) ); + pContent.set( dynamic_cast< Content* >( xContent.get() ) ); OSL_ENSURE( pContent.is() || !xContent.is(), "DataSupplier::queryContent: invalid content implementation!" ); m_pImpl->m_aResults[ i_nIndex ].pContent = pContent; return pContent.get(); |