fixed "QMetaObject::connectSlotsByName: No matching signal for" warnings
This commit is contained in:
parent
9c4adc8779
commit
cee1d0f861
11 changed files with 41 additions and 41 deletions
2
main.cpp
2
main.cpp
|
@ -396,7 +396,7 @@ int main(int argc, char *argv[])
|
|||
if (!readOk) { return 1; }
|
||||
|
||||
QObject::connect(threadDB, SIGNAL(playerNameFound(int, QString)), profileDB, SLOT(setPlayerName(int, QString)));
|
||||
QObject::connect(threadDB, SIGNAL(playerNameUpdated()), picDialog, SLOT(on_playerNameUpdated()));
|
||||
QObject::connect(threadDB, SIGNAL(playerNameUpdated()), picDialog, SLOT(playerNameUpdated()));
|
||||
threadDB->start();
|
||||
|
||||
picDialog->show();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue