Remove obsolete IP_HIDDEN column from peer list.

This commit is contained in:
Nick Tiskov 2013-07-06 04:07:09 +04:00
parent ba014d0033
commit c8d51e91f4
2 changed files with 4 additions and 6 deletions

View file

@ -40,7 +40,7 @@ class PeerListDelegate: public QItemDelegate {
public:
enum PeerListColumns {COUNTRY, IP, CONNECTION, FLAGS, CLIENT, PROGRESS, DOWN_SPEED, UP_SPEED,
TOT_DOWN, TOT_UP, IP_HIDDEN, COL_COUNT};
TOT_DOWN, TOT_UP, COL_COUNT};
public:
PeerListDelegate(QObject *parent) : QItemDelegate(parent) {}

View file

@ -79,16 +79,15 @@ PeerListWidget::PeerListWidget(PropertiesWidget *parent):
//Explicitly set the column visibility. When columns are added/removed
//between versions this prevents some of them being hidden due to
//incorrect restoreState() being used.
for (unsigned int i=0; i<PeerListDelegate::IP_HIDDEN; i++)
for (unsigned int i=0; i<PeerListDelegate::COL_COUNT; i++)
showColumn(i);
hideColumn(PeerListDelegate::IP_HIDDEN);
hideColumn(PeerListDelegate::COL_COUNT);
if (!Preferences().resolvePeerCountries())
hideColumn(PeerListDelegate::COUNTRY);
//To also migitate the above issue, we have to resize each column when
//its size is 0, because explicitely 'showing' the column isn't enough
//in the above scenario.
for (unsigned int i=0; i<PeerListDelegate::IP_HIDDEN; i++)
for (unsigned int i=0; i<PeerListDelegate::COL_COUNT; i++)
if (!columnWidth(i))
resizeColumnToContents(i);
// Context menu
@ -149,7 +148,7 @@ void PeerListWidget::showPeerListMenu(const QPoint&)
QStringList selectedPeerIPs;
foreach (const QModelIndex &index, selectedIndexes) {
int row = m_proxyModel->mapToSource(index).row();
QString myip = m_listModel->data(m_listModel->index(row, PeerListDelegate::IP_HIDDEN)).toString();
QString myip = m_listModel->data(m_listModel->index(row, PeerListDelegate::IP)).toString();
selectedPeerIPs << myip;
}
// Add Peer Action
@ -369,7 +368,6 @@ QStandardItem* PeerListWidget::addPeer(const QString& ip, const peer_info& peer)
// Adding Peer to peer list
m_listModel->insertRow(row);
m_listModel->setData(m_listModel->index(row, PeerListDelegate::IP), ip);
m_listModel->setData(m_listModel->index(row, PeerListDelegate::IP_HIDDEN), ip);
if (m_displayFlags) {
const QIcon ico = GeoIPManager::CountryISOCodeToIcon(peer.country);
if (!ico.isNull()) {