diff --git a/include/ChatPage.h b/include/ChatPage.h index c456b66..16c0c32 100644 --- a/include/ChatPage.h +++ b/include/ChatPage.h @@ -83,7 +83,7 @@ public: signals: void contentLoaded(); - void close(); + void closing(); void changeWindowTitle(const QString &msg); void unreadMessages(int count); void showNotification(const QString &msg); diff --git a/src/ChatPage.cc b/src/ChatPage.cc index f2efb68..f64f332 100644 --- a/src/ChatPage.cc +++ b/src/ChatPage.cc @@ -453,7 +453,7 @@ ChatPage::logout() resetUI(); - emit close(); + emit closing(); } void diff --git a/src/MainWindow.cc b/src/MainWindow.cc index 5d5cb59..c59ce2d 100644 --- a/src/MainWindow.cc +++ b/src/MainWindow.cc @@ -93,7 +93,7 @@ MainWindow::MainWindow(QWidget *parent) }); connect(register_page_, SIGNAL(backButtonClicked()), this, SLOT(showWelcomePage())); - connect(chat_page_, SIGNAL(close()), this, SLOT(showWelcomePage())); + connect(chat_page_, &ChatPage::closing, this, &MainWindow::showWelcomePage); connect( chat_page_, &ChatPage::showOverlayProgressBar, this, &MainWindow::showOverlayProgressBar); connect(