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

refactor: Remove audioInputFlag and audioOutputFlag

They exists in the parent class
This commit is contained in:
Diadlo 2017-06-11 23:05:38 +03:00
parent efcad35fd5
commit 6c4c5d86fc
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
2 changed files with 1 additions and 7 deletions

View File

@ -48,9 +48,7 @@
*/
GroupChatForm::GroupChatForm(Group* chatGroup)
: audioInputFlag(false)
, audioOutputFlag(false)
, group(chatGroup)
: group(chatGroup)
, inCall(false)
{
nusersLabel = new QLabel();

View File

@ -62,10 +62,6 @@ private:
void retranslateUi();
private:
// TODO: flags are deprecated -> remove
bool audioInputFlag;
bool audioOutputFlag;
Group* group;
QList<QLabel*> peerLabels;
QMap<int, QTimer*> peerAudioTimers;