summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/qt/bluetooth_att_server_attributes_dialog.h2
-rw-r--r--ui/qt/bluetooth_devices_dialog.h2
-rw-r--r--ui/qt/bluetooth_hci_summary_dialog.h2
-rw-r--r--ui/qt/main_window_slots.cpp16
-rw-r--r--ui/qt/rtp_stream_dialog.h2
5 files changed, 12 insertions, 12 deletions
diff --git a/ui/qt/bluetooth_att_server_attributes_dialog.h b/ui/qt/bluetooth_att_server_attributes_dialog.h
index 0612c07789..46835308fd 100644
--- a/ui/qt/bluetooth_att_server_attributes_dialog.h
+++ b/ui/qt/bluetooth_att_server_attributes_dialog.h
@@ -59,7 +59,7 @@ public:
public slots:
signals:
- void updateFilter(QString &filter, bool force = false);
+ void updateFilter(QString filter, bool force = false);
void captureFileChanged(capture_file *cf);
void goToPacket(int packet_num);
diff --git a/ui/qt/bluetooth_devices_dialog.h b/ui/qt/bluetooth_devices_dialog.h
index e33328d988..ddfe732d18 100644
--- a/ui/qt/bluetooth_devices_dialog.h
+++ b/ui/qt/bluetooth_devices_dialog.h
@@ -58,7 +58,7 @@ public:
public slots:
signals:
- void updateFilter(QString &filter, bool force = false);
+ void updateFilter(QString filter, bool force = false);
void captureFileChanged(capture_file *cf);
void goToPacket(int packet_num);
diff --git a/ui/qt/bluetooth_hci_summary_dialog.h b/ui/qt/bluetooth_hci_summary_dialog.h
index ee3b92259e..1ac24a0d25 100644
--- a/ui/qt/bluetooth_hci_summary_dialog.h
+++ b/ui/qt/bluetooth_hci_summary_dialog.h
@@ -59,7 +59,7 @@ public:
public slots:
signals:
- void updateFilter(QString &filter, bool force = false);
+ void updateFilter(QString filter, bool force = false);
void captureFileChanged(capture_file *cf);
void goToPacket(int packet_num);
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index fe147887d8..31f1bba89f 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -2983,8 +2983,8 @@ void MainWindow::on_actionTelephonyRTPStreams_triggered()
packet_list_, SLOT(redrawVisiblePackets()));
connect(rtp_stream_dialog, SIGNAL(goToPacket(int)),
packet_list_, SLOT(goToPacket(int)));
- connect(rtp_stream_dialog, SIGNAL(updateFilter(QString&, bool)),
- this, SLOT(filterPackets(QString&, bool)));
+ connect(rtp_stream_dialog, SIGNAL(updateFilter(QString, bool)),
+ this, SLOT(filterPackets(QString, bool)));
rtp_stream_dialog->show();
}
@@ -3023,8 +3023,8 @@ void MainWindow::on_actionATT_Server_Attributes_triggered()
BluetoothAttServerAttributesDialog *bluetooth_att_sever_attributes_dialog = new BluetoothAttServerAttributesDialog(*this, capture_file_);
connect(bluetooth_att_sever_attributes_dialog, SIGNAL(goToPacket(int)),
packet_list_, SLOT(goToPacket(int)));
- connect(bluetooth_att_sever_attributes_dialog, SIGNAL(updateFilter(QString&, bool)),
- this, SLOT(filterPackets(QString&, bool)));
+ connect(bluetooth_att_sever_attributes_dialog, SIGNAL(updateFilter(QString, bool)),
+ this, SLOT(filterPackets(QString, bool)));
bluetooth_att_sever_attributes_dialog->show();
}
@@ -3033,8 +3033,8 @@ void MainWindow::on_actionDevices_triggered()
BluetoothDevicesDialog *bluetooth_devices_dialog = new BluetoothDevicesDialog(*this, capture_file_);
connect(bluetooth_devices_dialog, SIGNAL(goToPacket(int)),
packet_list_, SLOT(goToPacket(int)));
- connect(bluetooth_devices_dialog, SIGNAL(updateFilter(QString&, bool)),
- this, SLOT(filterPackets(QString&, bool)));
+ connect(bluetooth_devices_dialog, SIGNAL(updateFilter(QString, bool)),
+ this, SLOT(filterPackets(QString, bool)));
bluetooth_devices_dialog->show();
}
@@ -3043,8 +3043,8 @@ void MainWindow::on_actionHCI_Summary_triggered()
BluetoothHciSummaryDialog *bluetooth_hci_summary_dialog = new BluetoothHciSummaryDialog(*this, capture_file_);
connect(bluetooth_hci_summary_dialog, SIGNAL(goToPacket(int)),
packet_list_, SLOT(goToPacket(int)));
- connect(bluetooth_hci_summary_dialog, SIGNAL(updateFilter(QString&, bool)),
- this, SLOT(filterPackets(QString&, bool)));
+ connect(bluetooth_hci_summary_dialog, SIGNAL(updateFilter(QString, bool)),
+ this, SLOT(filterPackets(QString, bool)));
bluetooth_hci_summary_dialog->show();
}
diff --git a/ui/qt/rtp_stream_dialog.h b/ui/qt/rtp_stream_dialog.h
index b45af313fa..8005a818ba 100644
--- a/ui/qt/rtp_stream_dialog.h
+++ b/ui/qt/rtp_stream_dialog.h
@@ -46,7 +46,7 @@ signals:
// cf_packet_marked callback to file.[ch] but that's synchronous and
// might incur too much overhead.
void packetsMarked();
- void updateFilter(QString &filter, bool force = false);
+ void updateFilter(QString filter, bool force = false);
void goToPacket(int packet_num);
protected: