mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Style and readability tweaks to btdeviceselectiondialog
Signed-off-by: Tim Wootton <tim@tee-jay.org.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f3f4cf17f4
commit
8f6702d0b3
2 changed files with 6 additions and 6 deletions
|
@ -24,7 +24,7 @@ BtDeviceSelectionDialog::BtDeviceSelectionDialog(QWidget *parent) :
|
||||||
ui->deviceAddressLabel->setText(tr("Address:"));
|
ui->deviceAddressLabel->setText(tr("Address:"));
|
||||||
ui->deviceNameLabel->setText(tr("Name:"));
|
ui->deviceNameLabel->setText(tr("Name:"));
|
||||||
ui->deviceState->setText(tr("Bluetooth powered on"));
|
ui->deviceState->setText(tr("Bluetooth powered on"));
|
||||||
ui->changeDeviceState->setText(tr("Turn On/Off"));
|
ui->changeDeviceState->setText(tr("Turn on/off"));
|
||||||
ui->discoveredDevicesLabel->setText(tr("Discovered devices"));
|
ui->discoveredDevicesLabel->setText(tr("Discovered devices"));
|
||||||
ui->scan->setText(tr("Scan"));
|
ui->scan->setText(tr("Scan"));
|
||||||
ui->clear->setText(tr("Clear"));
|
ui->clear->setText(tr("Clear"));
|
||||||
|
@ -47,7 +47,7 @@ BtDeviceSelectionDialog::BtDeviceSelectionDialog(QWidget *parent) :
|
||||||
if (ulRetCode != SUCCESS) {
|
if (ulRetCode != SUCCESS) {
|
||||||
QMessageBox::StandardButton warningBox;
|
QMessageBox::StandardButton warningBox;
|
||||||
warningBox = QMessageBox::critical(this, "Bluetooth",
|
warningBox = QMessageBox::critical(this, "Bluetooth",
|
||||||
tr("Could not initialize the Winsock version 2.2"), QMessageBox::Ok);
|
tr("Could not initialize Winsock version 2.2"), QMessageBox::Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ void BtDeviceSelectionDialog::on_save_clicked()
|
||||||
|
|
||||||
void BtDeviceSelectionDialog::on_clear_clicked()
|
void BtDeviceSelectionDialog::on_clear_clicked()
|
||||||
{
|
{
|
||||||
ui->dialogStatus->setText(tr("Remote devices list was cleaned."));
|
ui->dialogStatus->setText(tr("Remote devices list was cleared."));
|
||||||
ui->discoveredDevicesList->clear();
|
ui->discoveredDevicesList->clear();
|
||||||
ui->save->setEnabled(false);
|
ui->save->setEnabled(false);
|
||||||
|
|
||||||
|
@ -297,7 +297,7 @@ void BtDeviceSelectionDialog::displayPairingMenu(const QPoint &pos)
|
||||||
#else
|
#else
|
||||||
QMenu menu(this);
|
QMenu menu(this);
|
||||||
QAction *pairAction = menu.addAction(tr("Pair"));
|
QAction *pairAction = menu.addAction(tr("Pair"));
|
||||||
QAction *removePairAction = menu.addAction(tr("Remove Pairing"));
|
QAction *removePairAction = menu.addAction(tr("Remove pairing"));
|
||||||
QAction *chosenAction = menu.exec(ui->discoveredDevicesList->viewport()->mapToGlobal(pos));
|
QAction *chosenAction = menu.exec(ui->discoveredDevicesList->viewport()->mapToGlobal(pos));
|
||||||
QListWidgetItem *currentItem = ui->discoveredDevicesList->currentItem();
|
QListWidgetItem *currentItem = ui->discoveredDevicesList->currentItem();
|
||||||
QBluetoothDeviceInfo currentRemoteDeviceInfo = currentItem->data(Qt::UserRole).value<QBluetoothDeviceInfo>();
|
QBluetoothDeviceInfo currentRemoteDeviceInfo = currentItem->data(Qt::UserRole).value<QBluetoothDeviceInfo>();
|
||||||
|
@ -395,7 +395,7 @@ void BtDeviceSelectionDialog::deviceDiscoveryError(QBluetoothDeviceDiscoveryAgen
|
||||||
errorDescription = tr("The Bluetooth adaptor is powered off, power it on before doing discovery.");
|
errorDescription = tr("The Bluetooth adaptor is powered off, power it on before doing discovery.");
|
||||||
break;
|
break;
|
||||||
case QBluetoothDeviceDiscoveryAgent::InputOutputError:
|
case QBluetoothDeviceDiscoveryAgent::InputOutputError:
|
||||||
errorDescription = tr("Writing or reading from the device resulted in an error.");
|
errorDescription = tr("Writing to or reading from the device resulted in an error.");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
|
|
|
@ -190,7 +190,7 @@
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Turn On/Off</string>
|
<string>Turn on/off</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
Loading…
Add table
Reference in a new issue