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->recieverPage = new QString();
this->jceA = username; this->jceA = username;
this->JceConnector = new jceSSLClient(); this->JceConnector = new jceSSLClient();
JceConnector->connect(JceConnector,SIGNAL(serverDisconnectedbyRemote()),this,SLOT(reValidation())); QObject::connect(JceConnector,SIGNAL(serverDisconnectedbyRemote()),this,SLOT(reValidation()));
} }
jceLogin::~jceLogin() jceLogin::~jceLogin()

View file

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