vcl/qt5/QtInstance.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 54385e8952e89fd00feb0e8c3e623c522bc6eb09
Author:     Stephan Bergmann <stephan.bergm...@allotropia.de>
AuthorDate: Wed Aug 28 16:38:16 2024 +0200
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Wed Aug 28 23:03:13 2024 +0200

    `ImplGetSVData()->mpDefInst` is `this` here
    
    Change-Id: I8f9e00b4b3cefca62d214ee37fd4b6d0634db50a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172539
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

diff --git a/vcl/qt5/QtInstance.cxx b/vcl/qt5/QtInstance.cxx
index dfcf0c2c4f08..089ec9dc7488 100644
--- a/vcl/qt5/QtInstance.cxx
+++ b/vcl/qt5/QtInstance.cxx
@@ -774,7 +774,7 @@ bool QtInstance::DoExecute(int& nExitCode)
 #if defined EMSCRIPTEN
         // For Emscripten, QApplication::exec() will unwind the stack by 
throwing a JavaScript
         // exception, so we need to manually undo the call of 
AcquireYieldMutex() done in InitVCL:
-        ImplGetSVData()->mpDefInst->ReleaseYieldMutex(false);
+        ReleaseYieldMutex(false);
 #endif
         nExitCode = QApplication::exec();
 #if defined EMSCRIPTEN

Reply via email to