From 5bcaaa3aa3893c6a6982c6834090cf0212dc115d Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Thu, 6 Apr 2017 15:17:58 +0300 Subject: Initialize sync timer --- src/ChatPage.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ChatPage.cc b/src/ChatPage.cc index a17e8c65..732e3651 100644 --- a/src/ChatPage.cc +++ b/src/ChatPage.cc @@ -50,6 +50,9 @@ ChatPage::ChatPage(QWidget *parent) user_info_widget_ = new UserInfoWidget(ui->sideBarTopWidget); + sync_timer_ = new QTimer(this); + connect(sync_timer_, SIGNAL(timeout()), this, SLOT(startSync())); + connect(room_list_, SIGNAL(roomChanged(const RoomInfo &)), this, @@ -147,8 +150,6 @@ void ChatPage::initialSyncCompleted(SyncResponse response) view_manager_->initialize(response.rooms()); room_list_->setInitialRooms(response.rooms()); - sync_timer_ = new QTimer(this); - connect(sync_timer_, SIGNAL(timeout()), this, SLOT(startSync())); sync_timer_->start(sync_interval_); } -- cgit 1.5.1