Connection state variables was uninitialized, oops

This commit is contained in:
MultiMote 2017-12-16 22:06:05 +03:00
parent 3371d4ac70
commit b44524fa71

@ -3,6 +3,8 @@
QBERcon::Client::Client(QObject *parent) : QObject(parent) {
this->port = 2302;
connectedToServer = false;
connecting = false;
commandSequenceNumber = 0;
keepAliveInterval = 5000;
keepAliveTimer = new QTimer(this);