summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-03-25 14:53:42 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-03-25 14:53:42 +0100
commitda42dd358c4eb0654aebc291340eeb35c111dc78 (patch)
tree21569b31165a70aa120fbfbb5ec6516031c19bca /ucb
parenteda3c25d45bdd90c54b53487ed237ac1aeffa17c (diff)
slidecopy: fixed shadow variable
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.cxx2
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 0836c02543..3915a00520 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();