diff options
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))); |