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

Eike Rathke erack at redhat.com
Thu Sep 28 12:31:28 UTC 2017


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

New commits:
commit 8d6dd32d58494cc21c32bc3c4798fdd4593bde08
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/42871
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index cc702882c72e..ac72e1123ad1 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -1300,7 +1300,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