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

refactor(friendwidget): Make fields private, remove unused

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

View File

@ -60,7 +60,6 @@ FriendWidget::FriendWidget(const Friend* f, bool compact)
: GenericChatroomWidget(compact)
, frnd{f}
, isDefaultAvatar{true}
, historyLoaded{false}
{
avatar->setPixmap(QPixmap(":/img/contact.svg"));
statusPic.setPixmap(QPixmap(":/img/status/dot_offline.svg"));

View File

@ -59,7 +59,6 @@ protected:
public:
const Friend* frnd;
bool isDefaultAvatar;
bool historyLoaded;
};
#endif // FRIENDWIDGET_H