svx/source/svdraw/svdotext.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b176420cd51fdcc1d3ee9c49859261a709ab4f77
Author: matteocam <matteo.campane...@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();
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to