add some spaces to make it easier to read

Change-Id: I2eb1c74bc0d91d3a12a66989b696fccbf1d2825e
Reviewed-on: https://gerrit.libreoffice.org/25117
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
This commit is contained in:
Markus Mohrhard
2016-05-18 20:12:03 +02:00
parent c0aba6918a
commit 389d8db4d9
2 changed files with 15 additions and 9 deletions

View File

@@ -511,7 +511,10 @@ Reference< XInterface > WeakReferenceHelper::get() const
if (xAdp.is()) if (xAdp.is())
return xAdp->queryAdapted(); return xAdp->queryAdapted();
} }
catch (RuntimeException &) { OSL_ASSERT( false ); } // assert here, but no unexpected() catch (RuntimeException &)
{
OSL_ASSERT( false );
} // assert here, but no unexpected()
return Reference< XInterface >(); return Reference< XInterface >();
} }

View File

@@ -56,12 +56,14 @@ public:
@param rWeakRef another weak ref @param rWeakRef another weak ref
*/ */
WeakReferenceHelper( const WeakReferenceHelper & rWeakRef ); WeakReferenceHelper( const WeakReferenceHelper & rWeakRef );
/** Initialize this reference with the hard interface reference xInt. If the implementation /** Initialize this reference with the hard interface reference xInt. If the implementation
behind xInt does not support XWeak or XInt is null then this reference will be null. behind xInt does not support XWeak or XInt is null then this reference will be null.
@param xInt another hard interface reference @param xInt another hard interface reference
*/ */
WeakReferenceHelper( const css::uno::Reference< css::uno::XInterface > & xInt ); WeakReferenceHelper( const css::uno::Reference< css::uno::XInterface > & xInt );
/** Releases this reference. /** Releases this reference.
*/ */
~WeakReferenceHelper(); ~WeakReferenceHelper();
@@ -94,6 +96,7 @@ public:
@return hard reference or null, if the weakly referenced interface has gone @return hard reference or null, if the weakly referenced interface has gone
*/ */
css::uno::Reference< css::uno::XInterface > SAL_CALL get() const; css::uno::Reference< css::uno::XInterface > SAL_CALL get() const;
/** Gets a hard reference to the object. /** Gets a hard reference to the object.
@return hard reference or null, if the weakly referenced interface has gone @return hard reference or null, if the weakly referenced interface has gone