Fix compilation issue on MSVC

This commit is contained in:
Rasmus Karlsson 2017-09-17 00:40:02 +02:00
parent 3e9f71dbf9
commit 6b0fc38afe

View file

@ -72,7 +72,7 @@ ChatWidgetHeader::ChatWidgetHeader(ChatWidget *_chatWidget)
this->rightLabel.getLabel().setText("ayy"); this->rightLabel.getLabel().setText("ayy");
QTimer *timer = new QTimer(this); QTimer *timer = new QTimer(this);
connect(timer, &QTimer::timeout, this, checkLive); connect(timer, &QTimer::timeout, this, &ChatWidgetHeader::checkLive);
timer->start(60000); timer->start(60000);
} }