@ -8,7 +8,6 @@
# include "guiconstants.h"
# include "guiconstants.h"
# include "guiutil.h"
# include "guiutil.h"
# include "net.h"
# include "sync.h"
# include "sync.h"
# include <QDebug>
# include <QDebug>
@ -96,19 +95,18 @@ public:
mapNodeRows . insert ( std : : pair < NodeId , int > ( stats . nodeStats . nodeid , row + + ) ) ;
mapNodeRows . insert ( std : : pair < NodeId , int > ( stats . nodeStats . nodeid , row + + ) ) ;
}
}
int size ( )
int size ( ) const
{
{
return cachedNodeStats . size ( ) ;
return cachedNodeStats . size ( ) ;
}
}
CNodeCombinedStats * index ( int idx )
CNodeCombinedStats * index ( int idx )
{
{
if ( idx > = 0 & & idx < cachedNodeStats . size ( ) ) {
if ( idx > = 0 & & idx < cachedNodeStats . size ( ) )
return & cachedNodeStats [ idx ] ;
return & cachedNodeStats [ idx ] ;
} else {
return 0 ;
return 0 ;
}
}
}
} ;
} ;
PeerTableModel : : PeerTableModel ( ClientModel * parent ) :
PeerTableModel : : PeerTableModel ( ClientModel * parent ) :
@ -171,7 +169,7 @@ QVariant PeerTableModel::data(const QModelIndex &index, int role) const
}
}
} else if ( role = = Qt : : TextAlignmentRole ) {
} else if ( role = = Qt : : TextAlignmentRole ) {
if ( index . column ( ) = = Ping )
if ( index . column ( ) = = Ping )
return ( i nt) ( Qt : : AlignRight | Qt : : AlignVCenter ) ;
return ( QVaria nt) ( Qt : : AlignRight | Qt : : AlignVCenter ) ;
}
}
return QVariant ( ) ;
return QVariant ( ) ;
@ -204,14 +202,9 @@ QModelIndex PeerTableModel::index(int row, int column, const QModelIndex &parent
CNodeCombinedStats * data = priv - > index ( row ) ;
CNodeCombinedStats * data = priv - > index ( row ) ;
if ( data )
if ( data )
{
return createIndex ( row , column , data ) ;
return createIndex ( row , column , data ) ;
}
else
{
return QModelIndex ( ) ;
return QModelIndex ( ) ;
}
}
}
const CNodeCombinedStats * PeerTableModel : : getNodeStats ( int idx )
const CNodeCombinedStats * PeerTableModel : : getNodeStats ( int idx )
{
{