mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix warnings
This commit is contained in:
parent
a948a69ca0
commit
1fc703c281
|
@ -107,7 +107,6 @@ private slots:
|
|||
private:
|
||||
CroppingLabel* label;
|
||||
VideoSurface* videoSurface;
|
||||
bool selected = false;
|
||||
};
|
||||
|
||||
GroupNetCamView::GroupNetCamView(int group, QWidget *parent)
|
||||
|
|
|
@ -361,7 +361,7 @@ GenericNetCamView *GroupChatForm::createNetcam()
|
|||
GroupNetCamView* view = new GroupNetCamView(group->getGroupId(), this);
|
||||
|
||||
QStringList names = group->getPeerList();
|
||||
for (unsigned i=0; i<names.size(); ++i)
|
||||
for (int i = 0; i<names.size(); ++i)
|
||||
{
|
||||
if (!group->isSelfPeerNumber(i))
|
||||
static_cast<GroupNetCamView*>(view)->addPeer(i, names[i]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user