[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source
matteocam
matteo.campanelli at gmail.com
Fri Jun 19 19:57:55 PDT 2015
svx/source/svdraw/svdotext.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 0b6f9623414d9c70de2519476e6978388715ab8d
Author: matteocam <matteo.campanelli at gmail.com>
Date: Fri Jun 19 22:57:25 2015 -0400
Make sure to call underflow one more time (not sure if really useful)
Change-Id: I7a32305e2c53994c1e7b5c51bceef171a6c136f7
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 51c75a0..5b6d9a7 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -2008,6 +2008,8 @@ void SdrTextObj::onUnderflowStatusEvent( )
GetTextChain()->SetNilChainingEvent(this, true);
OutlinerParaObject *pPObj = GetOutlinerParaObject();
pEdtOutl->SetText(*pPObj);
+ OutlinerParaObject *pNewPObj = pEdtOutl->CreateParaObject();
+ SetOutlinerParaObject(pNewPObj);
}
return;
@@ -2149,6 +2151,7 @@ void SdrTextObj::onChainingEvent()
if (!pEdtOutl)
return;
+
if (GetTextChain()->GetNilChainingEvent(this)) {
GetTextChain()->SetNilChainingEvent(this, false);
return;
More information about the Libreoffice-commits
mailing list