aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/bluetooth_hci_summary_dialog.cpp
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2016-10-18 21:28:45 +0200
committerAnders Broman <a.broman58@gmail.com>2016-10-18 19:33:17 +0000
commit2898c2a244eeccdb41c334d2b6c16117e9844dc4 (patch)
tree0fb55ea0ddfece8ee19c8778edc1b5c57260a809 /ui/qt/bluetooth_hci_summary_dialog.cpp
parent7a906dc877c06700ef6d09aa8edd0e09f5b22f9d (diff)
Fix wrong local function names
Copy->Paste issue. Change-Id: I77bc755c772df0fb95a9e4ce91b8b3bc8a8e019d Reviewed-on: https://code.wireshark.org/review/18282 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/qt/bluetooth_hci_summary_dialog.cpp')
-rw-r--r--ui/qt/bluetooth_hci_summary_dialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/qt/bluetooth_hci_summary_dialog.cpp b/ui/qt/bluetooth_hci_summary_dialog.cpp
index d8097c8b6d..22edacc956 100644
--- a/ui/qt/bluetooth_hci_summary_dialog.cpp
+++ b/ui/qt/bluetooth_hci_summary_dialog.cpp
@@ -57,7 +57,7 @@ typedef struct _item_data_t {
Q_DECLARE_METATYPE(item_data_t *)
static gboolean
-bluetooth_device_tap_packet(void *tapinfo_ptr, packet_info *pinfo, epan_dissect_t *edt, const void* data)
+bluetooth_hci_summary_tap_packet(void *tapinfo_ptr, packet_info *pinfo, epan_dissect_t *edt, const void* data)
{
bluetooth_hci_summary_tapinfo_t *tapinfo = (bluetooth_hci_summary_tapinfo_t *) tapinfo_ptr;
@@ -68,7 +68,7 @@ bluetooth_device_tap_packet(void *tapinfo_ptr, packet_info *pinfo, epan_dissect_
}
static void
-bluetooth_device_tap_reset(void *tapinfo_ptr)
+bluetooth_hci_summary_tap_reset(void *tapinfo_ptr)
{
bluetooth_hci_summary_tapinfo_t *tapinfo = (bluetooth_hci_summary_tapinfo_t *) tapinfo_ptr;
@@ -77,14 +77,14 @@ bluetooth_device_tap_reset(void *tapinfo_ptr)
}
static void
-bluetooth_devices_tap(void *data)
+bluetooth_hci_summary_tap(void *data)
{
GString *error_string;
error_string = register_tap_listener("bluetooth.hci_summary", data, NULL,
0,
- bluetooth_device_tap_reset,
- bluetooth_device_tap_packet,
+ bluetooth_hci_summary_tap_reset,
+ bluetooth_hci_summary_tap_packet,
NULL
);
@@ -140,7 +140,7 @@ BluetoothHciSummaryDialog::BluetoothHciSummaryDialog(QWidget &parent, CaptureFil
item_reason_ = ui->tableTreeWidget->topLevelItem(12);
item_hardware_errors_ = ui->tableTreeWidget->topLevelItem(13);
- bluetooth_devices_tap(&tapinfo_);
+ bluetooth_hci_summary_tap(&tapinfo_);
cap_file_.retapPackets();
}