sc/source/ui/app/inputhdl.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 7fc989c564accbc1678628c9bda988ad06426105 Author: Szymon Kłos <[email protected]> AuthorDate: Tue Jun 14 16:59:32 2022 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Wed Jun 29 12:42:36 2022 +0200 jsdialog: formulabar: send also paragraph number for multiline formula Change-Id: Ia146be83f0ac6f3fbc94d5a904b8067ac8b2a8d9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135833 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Mert Tumer <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136596 Tested-by: Jenkins Reviewed-by: Szymon Kłos <[email protected]> diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index 77e2342e6955..5cae17a057df 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -1794,7 +1794,8 @@ void ScInputHandler::LOKSendFormulabarUpdate(const SfxViewShell* pActiveViewSh, const ESelection& rSelection) { OUString aSelection = - OUString::number(rSelection.nStartPos) + ";" + OUString::number(rSelection.nEndPos); + OUString::number(rSelection.nStartPos) + ";" + OUString::number(rSelection.nEndPos) + ";" + + OUString::number(rSelection.nStartPara) + ";" + OUString::number(rSelection.nEndPara); std::unique_ptr<jsdialog::ActionDataMap> pData = std::make_unique<jsdialog::ActionDataMap>(); (*pData)["action_type"] = "setText";
