diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-25 17:06:03 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-25 17:06:03 +0800 |
commit | fd0e5154a42da3cc9effc32f781a393d43ec5384 (patch) | |
tree | 580f15d420fc3f2467381046be3d5d803e4be767 /controller.cxx | |
parent | 38b6e2e5661ce038c845e1f46847833c69dd0e27 (diff) |
Try to get ticket history when task item is clicked
Diffstat (limited to 'controller.cxx')
-rw-r--r-- | controller.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/controller.cxx b/controller.cxx index 9908fb8..c4b8ca3 100644 --- a/controller.cxx +++ b/controller.cxx @@ -57,6 +57,9 @@ Controller::Controller(QObject* parent) : QObject{parent} connect(taskList, SIGNAL(updated()), appWindow, SLOT(pushHome())); + connect(appWindow, SIGNAL(ticketHistory(int)) + , client, SLOT(ticketHistory(int))); + connect(appWindow, SIGNAL(ticketNew(QString, QString)) , client, SLOT(ticketNew(QString, QString))); |