diff options
author | jan Iversen <jani@libreoffice.org> | 2018-02-11 13:10:17 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-02-11 13:14:41 +0100 |
commit | f81f63aff6e25d970d3183a12af6ff6fc0c23789 (patch) | |
tree | 207bec4bdc50f166da6f7d031ab3333cd0b38232 /ios | |
parent | c6a23023150c164a19236139fa413d43006ce21c (diff) |
iOS, added missing document state in callback
Change-Id: Ib710eb4ce1186571732588948726874a0fb9cb58
Diffstat (limited to 'ios')
-rw-r--r-- | ios/LibreOfficeLight/LibreOfficeLight/LOKit/DocumentHolder.swift | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/DocumentHolder.swift b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/DocumentHolder.swift index c0760b8614a4..0871c678dcaa 100644 --- a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/DocumentHolder.swift +++ b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/DocumentHolder.swift @@ -166,6 +166,10 @@ public class DocumentHolder // TODO: callback? } + case LOK_CALLBACK_STATE_CHANGED: + // TODO: call backback + print("onDocumentEvent type: LOK_CALLBACK_STATE_CHANGED: \(payload ?? "")") + default: print("onDocumentEvent type:\(type) not handled!") } |