diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-30 07:59:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-30 11:08:36 +0200 |
commit | cb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7 (patch) | |
tree | 2d819dbc32230f7af209b59a5c1f262f4964fa84 /cppuhelper/test | |
parent | 3bc5df7f32501075149e4b41f6e98ea8dd2cfcbd (diff) |
use uno::Reference::set method instead of assignment
Change-Id: I080668f86f0ab8b3bba857ee21411f907ae285c4
Diffstat (limited to 'cppuhelper/test')
-rw-r--r-- | cppuhelper/test/testpropshlp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/test/testpropshlp.cxx b/cppuhelper/test/testpropshlp.cxx index 8e98f12c57bb..ad62cd95b44e 100644 --- a/cppuhelper/test/testpropshlp.cxx +++ b/cppuhelper/test/testpropshlp.cxx @@ -344,7 +344,7 @@ public: { disposing(); EventObject aEvt; - aEvt.Source = Reference < XInterface > ( (static_cast< OWeakObject * >(this)) ); + aEvt.Source.set( (static_cast< OWeakObject * >(this)) ); rBHelper.aLC.disposeAndClear( aEvt ); rBHelper.bDisposed = sal_True; @@ -796,7 +796,7 @@ void test_PropertySetHelper() Reference < XFastPropertySet > rFast( xPS , UNO_QUERY ); OSL_ENSURE( rFast.is() , "PropertySetHelper: XFastPropertySet nor supported" ); - x = Reference < XInterface > (); + x.clear(); // Test add-remove listener { |