summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-12-17 13:26:02 +0100
committerDavid Tardon <dtardon@redhat.com>2012-12-18 16:12:19 +0100
commit2bb808b50151db339b88309618a75f853d9dc056 (patch)
tree952717318bc17c719b78f2b946fdc687224a2ab1 /svx
parent6488c424654cd5d6872f40c15dcdd72071843efd (diff)
fix assertion
Change-Id: I67bf571062c5246402979170e0395ede320dac82 Signed-off-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdobj.cxx4
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