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

fix warnings

This commit is contained in:
Nils Fenner 2015-10-18 22:19:47 +02:00
parent a948a69ca0
commit 1fc703c281
No known key found for this signature in database
GPG Key ID: 9591A163FF9BE04C
2 changed files with 1 additions and 2 deletions

View File

@ -107,7 +107,6 @@ private slots:
private:
CroppingLabel* label;
VideoSurface* videoSurface;
bool selected = false;
};
GroupNetCamView::GroupNetCamView(int group, QWidget *parent)

View File

@ -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]);