[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sc/source

Eike Rathke erack at redhat.com
Fri Sep 29 10:56:37 UTC 2017


 sc/source/ui/app/inputhdl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f38e9f1d194e23e455c69e9417185986daeccc39
Author: Eike Rathke <erack at redhat.com>
Date:   Wed Sep 27 18:58:07 2017 +0200

    Resolves: tdf#112523 do not use anything Ascii in UI context
    
    Change-Id: I0854f7b1e6e0bf51d8b4c7d846fad9b0ff25e763
    (cherry picked from commit 86910087fa41956aad6a22943bfbeb158e205dcd)
    Reviewed-on: https://gerrit.libreoffice.org/42872
    Reviewed-by: Michael Stahl <mstahl at redhat.com>
    Tested-by: Michael Stahl <mstahl at redhat.com>

diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index e0712c4671f8..6b22c877f888 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -1294,7 +1294,7 @@ namespace {
 
 bool needToExtendSelection(const OUString& rSelectedText, const OUString& rInsertText)
 {
-    return !rInsertText.startsWithIgnoreAsciiCase(rSelectedText);
+    return !ScGlobal::GetpTransliteration()->isMatch( rSelectedText, rInsertText);
 }
 
 void completeFunction( EditView* pView, const OUString& rInsert, bool& rParInserted )


More information about the Libreoffice-commits mailing list