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>
This commit is contained in:
Michal Labedzki 2015-09-07 15:46:45 +02:00 committed by Anders Broman
parent cd5706cb56
commit dae1286270
3 changed files with 14 additions and 14 deletions

View File

@ -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();

View File

@ -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">

View File

@ -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)),