[Libreoffice-commits] core.git: Branch 'libreoffice-5-2-0' - librelogo/source

Takeshi Abe tabe at fixedpoint.jp
Tue Jul 19 07:12:37 UTC 2016


 librelogo/source/LibreLogo/LibreLogo.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3f2c389abadd5af629d89f96909a98cc04e7679c
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Sun Jul 17 00:03:34 2016 +0900

    Resolves: tdf#100941 LibreLogo: replace literal '\n' with newline
    
    by simple SearchAlgorithms2's ABSOLUTE(=1), rather than using
    SearchAlgorithms' REGEXP(=1).
    BTW avoid RowDirection because it is for Calc only.
    
    Change-Id: I50ab460110ed43befb3e378e94f4fda0f2777f4d
    Reviewed-on: https://gerrit.libreoffice.org/27250
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    (cherry picked from commit b1a6d157683b8182089ed5854179c8da8c416304)
    Reviewed-on: https://gerrit.libreoffice.org/27282
    (cherry picked from commit 3881ea57892b78dcbc52d46a22616ac72bd4c335)
    Reviewed-on: https://gerrit.libreoffice.org/27307

diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py
index 0f21c36..b7077e10 100644
--- a/librelogo/source/LibreLogo/LibreLogo.py
+++ b/librelogo/source/LibreLogo/LibreLogo.py
@@ -392,9 +392,9 @@ def __translate__(arg = None):
         pagebreak = False
         selection.setString(text)
     # convert to paragraphs
-    __dispatcher__(".uno:ExecuteSearch", (__getprop__("SearchItem.SearchString", r"\n"), __getprop__("SearchItem.ReplaceString", r"\n"), \
+    __dispatcher__(".uno:ExecuteSearch", (__getprop__("SearchItem.SearchString", r"\n"), __getprop__("SearchItem.ReplaceString", "\n"), \
         __getprop__("Quiet", True), __getprop__("SearchItem.Command", 3), __getprop__("SearchItem.StyleFamily", 2), \
-        __getprop__("SearchItem.AlgorithmType", 1), __getprop__("SearchItem.RowDirection", 1), __getprop__("SearchItem.SearchFlags", 65536)))
+        __getprop__("SearchItem.AlgorithmType2", 1), __getprop__("SearchItem.SearchFlags", 0)))
     # set 2-page layout
     if pagebreak:
         selection.getStart().BreakType = 4


More information about the Libreoffice-commits mailing list