mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix warning: comparison between signed and unsigned integer expressions
, misleading-indentation and unused-variable /retroshare-gui/src/gui/statistics/GxsTransportStatistics.cpp:242: warning: comparison between signed and unsigned integer expressions [- Wsign-compare] for(uint32_t i=0;i<groupTreeWidget->topLevelItemCount();++i) /retroshare-gui/src/gui/statistics/GxsTransportStatistics.cpp:242: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation] for(uint32_t i=0;i<groupTreeWidget->topLevelItemCount();++i) /retroshare-gui/src/gui/statistics/GxsTransportStatistics.cpp:203: warning: unused variable ‘now’ [-Wunused-variable] time_t now = time(NULL) ;
This commit is contained in:
parent
15bc9c1c3c
commit
f27ce82e22
@ -20,18 +20,20 @@
|
||||
****************************************************************/
|
||||
|
||||
#include <iostream>
|
||||
#include <QTimer>
|
||||
#include <QObject>
|
||||
#include <QFontMetrics>
|
||||
#include <QWheelEvent>
|
||||
#include <QDateTime>
|
||||
#include <time.h>
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QFontMetrics>
|
||||
#include <QHeaderView>
|
||||
#include <QLayout>
|
||||
#include <QMenu>
|
||||
#include <QObject>
|
||||
#include <QPainter>
|
||||
#include <QStylePainter>
|
||||
#include <QLayout>
|
||||
#include <QHeaderView>
|
||||
#include <QTimer>
|
||||
#include <QTreeWidget>
|
||||
#include <QWheelEvent>
|
||||
|
||||
|
||||
#include <retroshare/rsgxstrans.h>
|
||||
#include <retroshare/rspeers.h>
|
||||
@ -200,7 +202,7 @@ void GxsTransportStatistics::updateContent()
|
||||
// clear
|
||||
|
||||
treeWidget->clear();
|
||||
time_t now = time(NULL) ;
|
||||
//time_t now = time(NULL) ;
|
||||
|
||||
// 1 - fill the table for pending packets
|
||||
|
||||
@ -239,9 +241,9 @@ void GxsTransportStatistics::updateContent()
|
||||
|
||||
std::set<RsGxsGroupId> openned_groups ;
|
||||
|
||||
for(uint32_t i=0;i<groupTreeWidget->topLevelItemCount();++i)
|
||||
if(groupTreeWidget->isItemExpanded(groupTreeWidget->topLevelItem(i)))
|
||||
openned_groups.insert(RsGxsGroupId(groupTreeWidget->topLevelItem(i)->data(COL_GROUP_GRP_ID,Qt::DisplayRole).toString().toStdString())) ;
|
||||
for(int i=0; i<groupTreeWidget->topLevelItemCount(); ++i)
|
||||
if( groupTreeWidget->isItemExpanded(groupTreeWidget->topLevelItem(i)) )
|
||||
openned_groups.insert(RsGxsGroupId(groupTreeWidget->topLevelItem(i)->data(COL_GROUP_GRP_ID, Qt::DisplayRole).toString().toStdString()));
|
||||
|
||||
groupTreeWidget->clear();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user