fixed "QMetaObject::connectSlotsByName: No matching signal for" warnings

This commit is contained in:
Rafael 2016-04-03 06:12:12 +02:00
parent 9c4adc8779
commit cee1d0f861
11 changed files with 41 additions and 41 deletions

View file

@ -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();