summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-17 13:23:34 +0200
committerFridrich Strba <fridrich@documentfoundation.org>2013-05-17 14:29:34 +0000
commit9fbc213ac882540b4d267d11d29eda68df297f16 (patch)
tree69be66ee868dfd5ad91d4c2123287f007d725ee3
parent0b183466bcdf56c9221ab28be9c52ed8787fe4ea (diff)
fdo#62965: fix crash in Edit Contour dialog
The pObjList is 0, so use pObj's GetModel() which should be the same. (regression from 115054fef08998c56cba8f14472df1d15007f635) Change-Id: Ib20e1806518f7b3b33d3fb4472d79d531ea9f1de (cherry picked from commit 71f990d286c603b3bf220c8d93af69f04a45dd7a) Reviewed-on: https://gerrit.libreoffice.org/3936 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
-rw-r--r--svx/source/svdraw/svdundo.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx
index c4e3c294b1f1..93cf3fc098ab 100644
--- a/svx/source/svdraw/svdundo.cxx
+++ b/svx/source/svdraw/svdundo.cxx
@@ -747,7 +747,7 @@ SdrUndoObjList::SdrUndoObjList(SdrObject& rNewObj, bool bOrdNumDirect)
nOrdNum=pObj->GetOrdNum();
}
- m_pListener = new ObjListListener(*this, *pObj, *pObjList->GetModel());
+ m_pListener = new ObjListListener(*this, *pObj, *pObj->GetModel());
}
SdrUndoObjList::~SdrUndoObjList()