sign: Reorder Tx/Rx columns in StreamStats Window
This commit is contained in:
parent
9cd26567cd
commit
ba06b88329
@ -23,17 +23,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
|
||||
// XXX: Keep the enum in sync with it's string
|
||||
enum {
|
||||
kRxPkts,
|
||||
kTxPkts,
|
||||
kRxBytes,
|
||||
kRxPkts,
|
||||
kTxBytes,
|
||||
kRxBytes,
|
||||
kMaxStreamStats
|
||||
};
|
||||
static QStringList statTitles = QStringList()
|
||||
<< "Rx Pkts"
|
||||
<< "Tx Pkts"
|
||||
<< "Rx Bytes"
|
||||
<< "Tx Bytes";
|
||||
<< "Rx Pkts"
|
||||
<< "Tx Bytes"
|
||||
<< "Rx Bytes";
|
||||
|
||||
StreamStatsModel::StreamStatsModel(QObject *parent)
|
||||
: QAbstractTableModel(parent)
|
||||
|
Loading…
Reference in New Issue
Block a user