[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source
matteocam
matteo.campanelli at gmail.com
Wed Jun 17 13:02:08 PDT 2015
svx/source/svdraw/svdotext.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit b176420cd51fdcc1d3ee9c49859261a709ab4f77
Author: matteocam <matteo.campanelli at gmail.com>
Date: Wed Jun 17 16:01:30 2015 -0400
Fixed return statement
Change-Id: If878c18267b5e027395ce1fcb9c6eb17586a2d85
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 173722b..87cef77 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -2079,10 +2079,10 @@ bool SdrTextObj::GetPreventChainable() const
IMPL_LINK_NOARG(SdrTextObj,ImpDecomposeChainedText)
{
if (!IsChainable() || GetNextLinkInChain() == NULL)
- return;
+ return 0;
if (!pEdtOutl)
- return;
+ return 0;
bool bIsPageOverflow = pEdtOutl->IsPageOverflow();
More information about the Libreoffice-commits
mailing list