sc/source/ui/app/inputwin.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 751cf52d970b76cca688836d08fd78ccb26a6aec
Author:     Szymon Kłos <szymon.k...@collabora.com>
AuthorDate: Sat Oct 19 15:38:32 2024 +0200
Commit:     Szymon Kłos <szymon.k...@collabora.com>
CommitDate: Sat Oct 19 16:04:40 2024 +0200

    jsdialog: send cell address on startup with jsdialog too
    
    When loaded, LOK_CALLBACK_CELL_ADDRESS is called in:
    
    libsclo.so!ScInputHandler::NotifyChange(ScInputHandler * this, const 
ScInputHdlState * pState, bool bForce, ScTabViewShell * pSourceSh, bool 
bStopEditing)
    libsclo.so!ScTabViewShell::UpdateInputHandler(ScTabViewShell * this, bool 
bForce, bool bStopEditing)
    libsclo.so!ScInputWindow::ScInputWindow(ScInputWindow * this, vcl::Window * 
pParent, const SfxBindings * pBind)
    libsclo.so!VclPtr<ScInputWindow>::Create<vcl::Window*&, 
SfxBindings*&>(SfxBindings *& arg, SfxBindings *& arg)
    
    but we didn't allow the same for SetPosString which was called in the
    neighbouring place
    
    Signed-off-by: Szymon Kłos <szymon.k...@collabora.com>
    Change-Id: I9cec1b05d5d9b31c352d99bcb92045ead618a3d8
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175192
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 6261437a35e8..64cf5860fd1c 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -558,8 +558,7 @@ void ScInputWindow::SetFuncString( const OUString& rString, 
bool bDoEdit )
 
 void ScInputWindow::SetPosString( const OUString& rStr )
 {
-    if (!comphelper::LibreOfficeKit::isActive())
-        aWndPos->SetPos( rStr );
+    aWndPos->SetPos( rStr );
 }
 
 void ScInputWindow::SetTextString( const OUString& rString, bool bKitUpdate )

Reply via email to