compiling error fix

This commit is contained in:
liranbg 2014-09-21 14:08:22 +03:00
parent ce4947fe5a
commit b4559f5182
2 changed files with 2 additions and 4 deletions

View file

@ -9,7 +9,7 @@ jceLogin::jceLogin(user* username)
this->recieverPage = new QString();
this->jceA = username;
this->JceConnector = new jceSSLClient();
JceConnector->connect(JceConnector,SIGNAL(serverDisconnectedbyRemote()),this,SLOT(reValidation()));
QObject::connect(JceConnector,SIGNAL(serverDisconnectedbyRemote()),this,SLOT(reValidation()));
}
jceLogin::~jceLogin()

View file

@ -9,11 +9,9 @@
#include <QString>
class jceLogin
class jceLogin : public QObject
{
Q_OBJECT
public:
jceLogin() {}
jceLogin(user* username);