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

New commits:
commit 8d6dd32d58494cc21c32bc3c4798fdd4593bde08
Author: Eike Rathke <er...@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 <c...@libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrh...@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 )
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to