diff options
Diffstat (limited to 'sc/source/ui/app/inputwin.cxx')
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index 8c390ca0ebae..300d9c38d699 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -70,6 +70,7 @@ #include <comphelper/string.hxx> #include <com/sun/star/frame/XLayoutManager.hpp> #include <helpids.h> +#include <output.hxx> namespace com::sun::star::accessibility { class XAccessible; } @@ -1747,6 +1748,13 @@ void ScTextWnd::StopEditEngine( bool bAll ) if (bSelection) Invalidate(); // So that the Selection is not left there } + + if (comphelper::LibreOfficeKit::isActive()) + { + // Clear + std::vector<ReferenceMark> aReferenceMarks; + ScInputHandler::SendReferenceMarks( mpViewShell, aReferenceMarks ); + } } static sal_Int32 findFirstNonMatchingChar(const OUString& rStr1, const OUString& rStr2) |