diff options
author | Eike Rathke <erack@redhat.com> | 2014-05-15 12:29:11 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-05-15 12:34:37 +0200 |
commit | a4f32eec653596483088c6e5aa37de031278d74c (patch) | |
tree | 87e199020801ac5c39e78c3e4302ecb365941434 /sc | |
parent | 848ec62b9ec806c18e0ca7ff2d45f39b4b147c0c (diff) |
resolved fdo#78718 break the indefinite loop when entering ="
... introduced with the refactoring of
5a14766061f75e88791dc3134c9ec56e198144e2
Change-Id: Ic322c58cad749d136966cee08ca5a06be59897b7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index ec22405d6bc9..8b8d0510c9b5 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -948,6 +948,10 @@ void ScInputHandler::ShowArgumentsTip( const OUString& rParagraph, OUString& rSe break; } } + else + { + break; + } } } |