summaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.qml b/main.qml
index 26010e2..9412cb4 100644
--- a/main.qml
+++ b/main.qml
@@ -7,12 +7,12 @@ ApplicationWindow {
signal ticketId(int id)
signal ticketSubject(string subject)
signal ticketNew(string queue, string requestor)
- function ticketHistory(subject, description, content, creator) {
+ function ticketHistory(subject, content, creator, created) {
pageView.push("TicketHistory.qml", {
"subject": subject
- , "description": description
, "content": content
, "creator": creator
+ , "created": created
})
}