diff options
author | Noel Power <noel.power@suse.com> | 2013-03-14 14:17:11 +0000 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-03-14 14:17:11 +0000 |
commit | 31305fe1288146bc17735f00dd16daf131afd475 (patch) | |
tree | 5f907805b25f7b886d52a6469d846ced8dfcb776 /svx | |
parent | 0f972e94a2fcbc6b227a2ae7b5d435438f6dbdc1 (diff) |
move xShape def outside debug ifdef to fix build failure
Change-Id: Ibfc75eade6982bd5375beea2ea2e282bd27d91ed
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index 1e52b4f77a06..d12d56b5ff84 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -2969,8 +2969,8 @@ SvxShape* SdrObject::getSvxShape() // 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_LEVEL > 0 uno::Reference< uno::XInterface > xShape( maWeakUnoShape ); +#if OSL_DEBUG_LEVEL > 0 OSL_ENSURE( !( !xShape.is() && mpSvxShape ), "SdrObject::getSvxShape: still having IMPL-Pointer to dead object!" ); #endif |