aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/packet_list_model.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-10-30 19:21:24 +0000
committerGerald Combs <gerald@wireshark.org>2012-10-30 19:21:24 +0000
commit0a28fb8f6a354aa9a446b6bf70733c305534e074 (patch)
treea075f90a96240ec13bbb5b15135e4f81cb9c75f3 /ui/qt/packet_list_model.h
parent27b5d556cb53bee24e20a9bb5862189ee2e55a61 (diff)
Update the Qt byte view widget to reflect the recent changes in the GTK+
byte view. Move the packet_char_enc enum from packet.h to frame_data.h. Make the encoding flag a packet_char_enc and make it one bit. Get rid of the "cfile" global in a few places. C++-ize some of the font code. Clean up some variable names. svn path=/trunk/; revision=45838
Diffstat (limited to 'ui/qt/packet_list_model.h')
-rw-r--r--ui/qt/packet_list_model.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/qt/packet_list_model.h b/ui/qt/packet_list_model.h
index 84a2832a5a..6f56054be0 100644
--- a/ui/qt/packet_list_model.h
+++ b/ui/qt/packet_list_model.h
@@ -44,7 +44,8 @@ class PacketListModel : public QAbstractItemModel
{
Q_OBJECT
public:
- explicit PacketListModel(QObject *parent = 0, capture_file *cfPtr = NULL);
+ explicit PacketListModel(QObject *parent = 0, capture_file *cf = NULL);
+ void setCaptureFile(capture_file *cf);
QModelIndex index(int row, int column,
const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &index) const;
@@ -68,7 +69,7 @@ signals:
public slots:
private:
- capture_file *cf;
+ capture_file *cap_file_;
QList<QString> col_names_;
QVector<PacketListRecord *> visible_rows_;
QVector<PacketListRecord *> physical_rows_;