sign: Rename Aggr to Total in Stream Stats Window
This commit is contained in:
parent
287316b473
commit
5f82912f91
@ -45,9 +45,9 @@ enum {
|
|||||||
kMaxAggrStreamStats
|
kMaxAggrStreamStats
|
||||||
};
|
};
|
||||||
static QStringList aggrStatTitles = QStringList()
|
static QStringList aggrStatTitles = QStringList()
|
||||||
<< "Aggregate\nTx Pkts"
|
<< "Total\nTx Pkts"
|
||||||
<< "Aggregate\nRx Pkts"
|
<< "Total\nRx Pkts"
|
||||||
<< "Aggregate\nPkt Loss";
|
<< "Total\nPkt Loss";
|
||||||
|
|
||||||
static const uint kAggrGuid = 0xffffffff;
|
static const uint kAggrGuid = 0xffffffff;
|
||||||
|
|
||||||
@ -88,7 +88,7 @@ QVariant StreamStatsModel::headerData(
|
|||||||
.arg(statTitles.at(section % kMaxStreamStats));
|
.arg(statTitles.at(section % kMaxStreamStats));
|
||||||
case Qt::Vertical: // Row Header
|
case Qt::Vertical: // Row Header
|
||||||
if (section == (guidList_.size() - 1))
|
if (section == (guidList_.size() - 1))
|
||||||
return QString("GUID Aggregate");
|
return QString("GUID Total");
|
||||||
return QString("Stream GUID %1")
|
return QString("Stream GUID %1")
|
||||||
.arg(guidList_.at(section));
|
.arg(guidList_.at(section));
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user