aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2015-09-07 15:46:45 +0200
committerAnders Broman <a.broman58@gmail.com>2015-10-15 03:48:52 +0000
commitdae1286270af8cc9f6839e82102fa7433ac7acb4 (patch)
tree950afffec1b504b0b0453c8f10e7b01dff3fceba /ui
parentcd5706cb56b30b3c38f2a986732b0bd0f9d47ce8 (diff)
Qt: Add "Bluetooth" prefix for Bluetooth item in Wireless menu
Now Bluetooth menu is named Wireless, so add Bluetooth prefix to distinguish them. Change-Id: I7a3d1b73e0e5fd5e3cc9b1b13d0cb9a32868a8be Reviewed-on: https://code.wireshark.org/review/10525 Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/main_window.h6
-rw-r--r--ui/qt/main_window.ui16
-rw-r--r--ui/qt/main_window_slots.cpp6
3 files changed, 14 insertions, 14 deletions
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 @@
<property name="title">
<string>&amp;Wireless</string>
</property>
- <addaction name="actionATT_Server_Attributes"/>
- <addaction name="actionDevices"/>
- <addaction name="actionHCI_Summary"/>
+ <addaction name="actionBluetoothATT_Server_Attributes"/>
+ <addaction name="actionBluetoothDevices"/>
+ <addaction name="actionBluetoothHCI_Summary"/>
<addaction name="separator"/>
<addaction name="actionWirelessWlanStatistics"/>
</widget>
@@ -2495,19 +2495,19 @@
<string>Edit the packet list coloring rules.</string>
</property>
</action>
- <action name="actionATT_Server_Attributes">
+ <action name="actionBluetoothATT_Server_Attributes">
<property name="text">
<string>Bluetooth ATT Server Attributes</string>
</property>
</action>
- <action name="actionDevices">
+ <action name="actionBluetoothDevices">
<property name="text">
- <string>Devices</string>
+ <string>Bluetooth Devices</string>
</property>
</action>
- <action name="actionHCI_Summary">
+ <action name="actionBluetoothHCI_Summary">
<property name="text">
- <string>HCI Summary</string>
+ <string>Bluetooth HCI Summary</string>
</property>
</action>
<action name="actionViewShowPacketInNewWindow">
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)),