From 9a373521d7a328197a4bf9abeb0a981b7acba896 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 19 Oct 2018 15:13:19 +0300 Subject: It seems to work even without calling temporaryHackToInvokeCallbackHandlers()? But I tested just a few times. If somebody re-starts work on LibreOfficeLight, and encounter hangs, hopefully they notice this commit and try to un-comment-out the line in question. I hadn't noticed that temporaryHackToInvokeCallbackHandlers() thing before, maybe calling it in the iOS app being developed (in the "online" repo) is necessary, and would help avoiding the hangs I occasionally see in it? Change-Id: I0f4d8c800024c43acb512d40efdfad71c229bec2 --- ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ios/LibreOfficeLight') diff --git a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift index 218d203f61be..2a1ad97b3005 100644 --- a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift +++ b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift @@ -539,7 +539,9 @@ open class Document public func invokeHandlers() { - temporaryHackToInvokeCallbackHandlers(pDoc) + // The app seems to work even without this? Or maybe I + // just didn't test hard enough? + // temporaryHackToInvokeCallbackHandlers(pDoc) } -- cgit