summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorHenry Castro <hcastro@collabora.com>2019-04-18 18:10:13 -0400
committerHenry Castro <hcastro@collabora.com>2019-04-26 15:28:11 +0200
commit2ead533d2383083925537832b473e3264811d454 (patch)
tree60792f8db8b1990adcc87000a0e415c36146d260 /ios
parent75d6bc7abdaad42a20899079cd9e8ff5139fedf1 (diff)
lok: allow paste content to popup dialog
Change-Id: I1893d52df505bc43428c37a624ca05c569ba1bc0 Reviewed-on: https://gerrit.libreoffice.org/70958 Tested-by: Jenkins Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'ios')
-rw-r--r--ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift
index 2a1ad97b3005..48cafe44632b 100644
--- a/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift
+++ b/ios/LibreOfficeLight/LibreOfficeLight/LOKit/Document.swift
@@ -170,9 +170,9 @@ open class Document
*
* @param nWindowid
*/
- public func postWindow( nWindowId: UInt32, nAction: Int32)
+ public func postWindow( nWindowId: UInt32, nAction: Int32, data: String)
{
- return docClass.postWindow(pDoc, nWindowId, nAction);
+ return docClass.postWindow(pDoc, nWindowId, nAction, data);
}
/**
@@ -536,13 +536,13 @@ open class Document
{
docClass.setViewLanguage(pDoc, id, language);
}
-
+
public func invokeHandlers()
{
// The app seems to work even without this? Or maybe I
// just didn't test hard enough?
// temporaryHackToInvokeCallbackHandlers(pDoc)
-
+
}
}