compiling error fix
This commit is contained in:
parent
ce4947fe5a
commit
b4559f5182
2 changed files with 2 additions and 4 deletions
|
@ -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()
|
||||
|
|
|
@ -9,11 +9,9 @@
|
|||
#include <QString>
|
||||
|
||||
|
||||
class jceLogin
|
||||
class jceLogin : public QObject
|
||||
{
|
||||
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
jceLogin() {}
|
||||
jceLogin(user* username);
|
||||
|
|
Loading…
Reference in a new issue