[Libreoffice-commits] core.git: sw/source

Khaled Hosny khaledhosny at eglug.org
Mon Nov 7 04:54:33 UTC 2016


 sw/source/core/text/porlay.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 639735edaffd35dfe99e527789402e030d95ab45
Author: Khaled Hosny <khaledhosny at eglug.org>
Date:   Mon Nov 7 06:53:38 2016 +0200

    Fix thinkos in my previous commit
    
    Change-Id: I8f912f5a02933bdfb318dc4f946d4ad7471eb261

diff --git a/sw/source/core/text/porlay.cxx b/sw/source/core/text/porlay.cxx
index 61e9226..64b6723 100644
--- a/sw/source/core/text/porlay.cxx
+++ b/sw/source/core/text/porlay.cxx
@@ -89,8 +89,10 @@ bool isBehChar(sal_Unicode cCh)
     case U_JG_FARSI_YEH:
     case U_JG_BURUSHASKI_YEH_BARREE:
         bRet = true;
+        break;
     default:
         bRet = false;
+        break;
     }
 
     return bRet;
@@ -108,8 +110,10 @@ bool isYehChar(sal_Unicode cCh)
     case U_JG_BURUSHASKI_YEH_BARREE:
     case U_JG_YEH_WITH_TAIL:
         bRet = true;
+        break;
     default:
         bRet = false;
+        break;
     }
 
     return bRet;


More information about the Libreoffice-commits mailing list