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

refactor(friend): Remove obsolete code from Friend class

This commit is contained in:
Diadlo 2017-03-08 15:08:07 +03:00
parent ea50eaaef7
commit ec81b07bb3
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
2 changed files with 0 additions and 3 deletions

View File

@ -39,8 +39,6 @@ Friend::Friend(uint32_t friendId, const ToxPk& friendPk)
userName = friendPk.toString();
}
userAlias = Settings::getInstance().getFriendAlias(friendPk);
chatForm = new ChatForm(this);
}

View File

@ -77,7 +77,6 @@ private:
bool hasNewEvents;
Status friendStatus;
FriendWidget* widget;
ChatForm* chatForm;
};