1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(profile): Fix status message and username signal connection typo

Fixes #4760
This commit is contained in:
anthony.bilinski 2017-10-25 14:16:37 -07:00
parent 92def839d0
commit d41031bd15

View File

@ -47,7 +47,7 @@ ProfileInfo::ProfileInfo(Core* core, Profile *profile)
{
connect(core, &Core::idSet, this, &ProfileInfo::idChanged);
connect(core, &Core::usernameSet, this, &ProfileInfo::usernameChanged);
connect(core, &Core::statusMessageSet, this, &ProfileInfo::usernameChanged);
connect(core, &Core::statusMessageSet, this, &ProfileInfo::statusMessageChanged);
}
/**