You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got a build error as below, how can I fixed it?
SettingAccountForm.obj:-1: error: LNK2019: unresolved external symbol "public: void __cdecl MainWindow::reregister(struct ApplicationSettings const &)" (?reregister@MainWindow@@QEAAXAEBUApplicationSettings@@@z) referenced in function "private: void __cdecl SettingAccountForm::on_pushButton_reregister_clicked(void)" (?on_pushButton_reregister_clicked@SettingAccountForm@@AEAAXXZ)
The text was updated successfully, but these errors were encountered:
After remove the const in reregister function, it can build succeed, but when run qsip, it can not register to server, I can not capture the register packets in wireshark.
vvoid MainWindow::reregister(ApplicationSettings const &a)
I got a build error as below, how can I fixed it?
SettingAccountForm.obj:-1: error: LNK2019: unresolved external symbol "public: void __cdecl MainWindow::reregister(struct ApplicationSettings const &)" (?reregister@MainWindow@@QEAAXAEBUApplicationSettings@@@z) referenced in function "private: void __cdecl SettingAccountForm::on_pushButton_reregister_clicked(void)" (?on_pushButton_reregister_clicked@SettingAccountForm@@AEAAXXZ)
The text was updated successfully, but these errors were encountered: