diff options
author | David Tardon <dtardon@redhat.com> | 2013-07-09 10:40:21 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-07-09 10:42:35 +0200 |
commit | 6e2815a0ffdb5811f220978734354b1033801927 (patch) | |
tree | e6a4d90ce5abd381c97d0332091692ff0fc28f6f /reportdesign/source | |
parent | 5a1c764a05e4cbe4d2dd803df8f2db02833cbe87 (diff) |
fdo#66582 avoid crash because of missing model
The SdrObject is still under construction at this point, so it does not
make sense to broadcast changes, because there are not any listeners
anyway.
Change-Id: Ib05e30843b4b0e125d5cae18a481e16fb7e21ba1
Diffstat (limited to 'reportdesign/source')
-rw-r--r-- | reportdesign/source/core/sdr/RptObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/core/sdr/RptObject.cxx b/reportdesign/source/core/sdr/RptObject.cxx index b2b6d66783e3..33538439b67d 100644 --- a/reportdesign/source/core/sdr/RptObject.cxx +++ b/reportdesign/source/core/sdr/RptObject.cxx @@ -150,7 +150,7 @@ SdrObject* OObjectBase::createObject(const uno::Reference< report::XReportCompon { sal_Bool bOpaque = sal_False; _xComponent->getPropertyValue(PROPERTY_OPAQUE) >>= bOpaque; - pNewObj->SetLayer(bOpaque ? RPT_LAYER_FRONT : RPT_LAYER_BACK); + pNewObj->NbcSetLayer(bOpaque ? RPT_LAYER_FRONT : RPT_LAYER_BACK); } catch(const uno::Exception&) { |