diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-02 22:48:23 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-02 22:48:23 +0800 |
commit | 6be6316bc4ce879b4373a9fc46edd3eeb6762674 (patch) | |
tree | 628b18c222bb91bd1bec63f04163ef80c4134881 | |
parent | 991945234c893e1f0f9a9363a31fe6c583e448d5 (diff) |
Set ticket history long format to true here
-rw-r--r-- | TicketList.qml | 2 | ||||
-rw-r--r-- | controller.cxx | 4 | ||||
-rw-r--r-- | main.qml | 2 | ||||
m--------- | qrtclient | 0 |
4 files changed, 4 insertions, 4 deletions
diff --git a/TicketList.qml b/TicketList.qml index 6bfb54e..58dd774 100644 --- a/TicketList.qml +++ b/TicketList.qml @@ -9,7 +9,7 @@ TaskListForm { height: task.height taskTitle.text: subject itemDelegate.onClicked: { - window.ticketHistory(id) + window.ticketHistory(id, true) pageView.push("TicketHistory.qml" , {"subject": subject}) } diff --git a/controller.cxx b/controller.cxx index 14f6468..1690044 100644 --- a/controller.cxx +++ b/controller.cxx @@ -75,8 +75,8 @@ Controller::Controller(QObject* parent) }); }); - connect(appWindow, SIGNAL(ticketHistory(int)) - , client, SLOT(ticketHistory(int))); + connect(appWindow, SIGNAL(ticketHistory(int, bool)) + , client, SLOT(ticketHistory(int, bool))); connect(client, &Client::gotTicketHistory , ticketHistoryList, &TicketHistoryList::update); @@ -4,7 +4,7 @@ import "larva/features" ApplicationWindow { signal logIn(string name, string password) - signal ticketHistory(int id) + signal ticketHistory(int id, bool longFormat) signal ticketNew(string queue, string requestor) id: window diff --git a/qrtclient b/qrtclient -Subproject b628ffd96ce55f2fab838b4c9626dde873370ed +Subproject 5567338ace1f591c6a0e7a54da0cf15667e3b46 |