aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/packet_list.h
diff options
context:
space:
mode:
authorRoland Knall <rknall@gmail.com>2017-11-12 11:29:13 +0100
committerRoland Knall <rknall@gmail.com>2017-11-12 17:18:44 +0000
commite13e2df9a1278903c66292a4f7b823c707b30cb3 (patch)
treea1831fd454f638fd1fcd13b6cea763a72deac0ab /ui/qt/packet_list.h
parent447291d84a63d3e707fd00111ba465e5c230c849 (diff)
Qt: Rename packetSelection to frameSelected
In order to consolidate the interfaces between certain parts of the UI, the signal emitted after a frame change has occured, has to include the number of the frame. This led to two signals for frame change, and therefore packetSelection is to be removed. Change-Id: I24e0e0890291d2243935b0c48387beb66904bfa3 Reviewed-on: https://code.wireshark.org/review/24377 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'ui/qt/packet_list.h')
-rw-r--r--ui/qt/packet_list.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/qt/packet_list.h b/ui/qt/packet_list.h
index 5b69f9ec8e..93714844ce 100644
--- a/ui/qt/packet_list.h
+++ b/ui/qt/packet_list.h
@@ -150,14 +150,13 @@ private:
signals:
void packetDissectionChanged();
- void packetSelectionChanged();
void showColumnPreferences(PreferencesDialog::PreferencesPane start_pane);
void editColumn(int column);
void packetListScrolled(bool at_end);
void showProtocolPreferences(const QString module_name);
void editProtocolPreference(struct preference *pref, struct pref_module *module);
- void selectedFrameChanged(int);
+ void frameSelected(int frameNum);
void fieldSelected(FieldInformation *);
public slots: