diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2016-01-18 12:27:49 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-01-19 13:21:49 +0000 |
commit | e2b222cc98b1378b85d0c37eb9f5ef562247b3cf (patch) | |
tree | d8c659e66fe39299ca127f11b5c146b9689aba94 | |
parent | f9b0fec2ff0a17ae851077a2b74a0e9d6fc38476 (diff) |
follow-up of tdf#89031
No function name hints or autocompletion when character right of caret is '$'
Change-Id: I4fcfa6e29e5671e97743c7fc520953721d0bda24
Reviewed-on: https://gerrit.libreoffice.org/21577
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
(cherry picked from commit 1e2bcb3177d58e6f446296ae28fcff7f5da9b620)
Reviewed-on: https://gerrit.libreoffice.org/21601
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index a464c3476b0c..2395cbac55ea 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -1060,7 +1060,8 @@ void ScInputHandler::UseFormulaData() if ( aParagraph.getLength() > aSel.nEndPos && ( ScGlobal::pCharClass->isLetterNumeric( aParagraph, aSel.nEndPos ) || aParagraph[ aSel.nEndPos ] == '_' || - aParagraph[ aSel.nEndPos ] == '.' ) ) + aParagraph[ aSel.nEndPos ] == '.' || + aParagraph[ aSel.nEndPos ] == '$' ) ) return; // Is the cursor at the end of a word? |