diff options
author | David Tardon <dtardon@redhat.com> | 2012-12-17 13:26:02 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-12-18 16:10:04 +0100 |
commit | d397024411d2d73161e6a7410ccc82ee222648d8 (patch) | |
tree | 7b0ffdd7e4820f5cbc4cd70f3ac7eb6e6e291e69 /svx | |
parent | cd69be65786cb49d0748433360b05db8c4f6d890 (diff) |
fix assertion
Change-Id: I67bf571062c5246402979170e0395ede320dac82
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index fefe00db72fa..f74ec4720fe5 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -2937,9 +2937,9 @@ SvxShape* SdrObject::getSvxShape() const // retrieving the impl pointer and subsequently using it is not thread-safe, of course, so it needs to be // guarded by the SolarMutex -#if OSL_DEBUG_LEVE > 0 +#if OSL_DEBUG_LEVEL > 0 uno::Reference< uno::XInterface > xShape( maWeakUnoShape ); - OSL_ENSURE( !( !xShapeGuard.is() && mpSvxShape ), + OSL_ENSURE( !( !xShape.is() && mpSvxShape ), "SdrObject::getSvxShape: still having IMPL-Pointer to dead object!" ); #endif |