[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source
matteocam
matteo.campanelli at gmail.com
Thu Jun 4 13:29:29 PDT 2015
svx/source/svdraw/svdotextdecomposition.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit a13b044e00ca78fc1aa46bc169ed184463b202e9
Author: matteocam <matteo.campanelli at gmail.com>
Date: Thu Jun 4 16:27:40 2015 -0400
Removed reformatting. Using SetOutlinerParaObject instead of the Nbc version
Change-Id: I2d8d75b23e7d76b65b0d7e076074a82450c0f56e
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 804cacb..802863f 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -755,8 +755,8 @@ void SdrTextObj::impLeaveOnlyNonOverflowingText() const
}
OutlinerParaObject *pNewText = rOutliner.CreateParaObject();
- const_cast<SdrTextObj*>(this)->NbcSetOutlinerParaObject(pNewText);
- const_cast<SdrTextObj*>(this)->ReformatText();
+ const_cast<SdrTextObj*>(this)->SetOutlinerParaObject(pNewText);
+ //const_cast<SdrTextObj*>(this)->ReformatText();
}
More information about the Libreoffice-commits
mailing list