summaryrefslogtreecommitdiff
path: root/libreofficekit
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 /libreofficekit
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 'libreofficekit')
-rw-r--r--libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx2
-rw-r--r--libreofficekit/qa/tilebench/tilebench.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx b/libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx
index 5d6ecb01728d..1de1aa94568d 100644
--- a/libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx
@@ -431,7 +431,7 @@ gtv_application_window_unregister_child_window(GtvApplicationWindow* window, Gtk
LibreOfficeKitDocument* pDocument = lok_doc_view_get_document(LOK_DOC_VIEW(window->lokdocview));
guint dialogId = 0;
g_object_get(G_OBJECT(pChildWin), "dialogid", &dialogId, nullptr);
- pDocument->pClass->postWindow(pDocument, dialogId, LOK_WINDOW_CLOSE);
+ pDocument->pClass->postWindow(pDocument, dialogId, LOK_WINDOW_CLOSE, nullptr);
}
}
diff --git a/libreofficekit/qa/tilebench/tilebench.cxx b/libreofficekit/qa/tilebench/tilebench.cxx
index 61d337f6c518..d0fc87283d35 100644
--- a/libreofficekit/qa/tilebench/tilebench.cxx
+++ b/libreofficekit/qa/tilebench/tilebench.cxx
@@ -286,7 +286,7 @@ static void testDialog( Document *pDocument, const char *uno_cmd )
}
aTimes.emplace_back("post close dialog");
- pDocument->postWindow(nDialogId, LOK_WINDOW_CLOSE);
+ pDocument->postWindow(nDialogId, LOK_WINDOW_CLOSE, nullptr);
aTimes.emplace_back();
pDocument->destroyView(view);