diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h index dd883ffcac..4cd121a42c 100644 --- a/ui/qt/main_window.h +++ b/ui/qt/main_window.h @@ -551,9 +551,9 @@ private slots: void on_actionTelephonyUCPMessages_triggered(); void on_actionTelephonySipFlows_triggered(); - void on_actionATT_Server_Attributes_triggered(); - void on_actionDevices_triggered(); - void on_actionHCI_Summary_triggered(); + void on_actionBluetoothATT_Server_Attributes_triggered(); + void on_actionBluetoothDevices_triggered(); + void on_actionBluetoothHCI_Summary_triggered(); void externalMenuItem_triggered(); diff --git a/ui/qt/main_window.ui b/ui/qt/main_window.ui index b9baa1d738..f34c011888 100644 --- a/ui/qt/main_window.ui +++ b/ui/qt/main_window.ui @@ -613,9 +613,9 @@ &Wireless - - - + + + @@ -2495,19 +2495,19 @@ Edit the packet list coloring rules. - + Bluetooth ATT Server Attributes - + - Devices + Bluetooth Devices - + - HCI Summary + Bluetooth HCI Summary diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp index 395df9faf7..25f257b6b4 100644 --- a/ui/qt/main_window_slots.cpp +++ b/ui/qt/main_window_slots.cpp @@ -3080,7 +3080,7 @@ void MainWindow::on_actionTelephonySipFlows_triggered() // Bluetooth Menu -void MainWindow::on_actionATT_Server_Attributes_triggered() +void MainWindow::on_actionBluetoothATT_Server_Attributes_triggered() { BluetoothAttServerAttributesDialog *bluetooth_att_sever_attributes_dialog = new BluetoothAttServerAttributesDialog(*this, capture_file_); connect(bluetooth_att_sever_attributes_dialog, SIGNAL(goToPacket(int)), @@ -3090,7 +3090,7 @@ void MainWindow::on_actionATT_Server_Attributes_triggered() bluetooth_att_sever_attributes_dialog->show(); } -void MainWindow::on_actionDevices_triggered() +void MainWindow::on_actionBluetoothDevices_triggered() { BluetoothDevicesDialog *bluetooth_devices_dialog = new BluetoothDevicesDialog(*this, capture_file_); connect(bluetooth_devices_dialog, SIGNAL(goToPacket(int)), @@ -3100,7 +3100,7 @@ void MainWindow::on_actionDevices_triggered() bluetooth_devices_dialog->show(); } -void MainWindow::on_actionHCI_Summary_triggered() +void MainWindow::on_actionBluetoothHCI_Summary_triggered() { BluetoothHciSummaryDialog *bluetooth_hci_summary_dialog = new BluetoothHciSummaryDialog(*this, capture_file_); connect(bluetooth_hci_summary_dialog, SIGNAL(goToPacket(int)),