summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2013-12-17 13:49:15 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-20 09:06:35 +0100
commit9f547761f35fff54994f805735d5ac2e538e53dc (patch)
treec1612b5cf76fa6cdfc6a6358a8503a86dc7aadd1 /src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp
parent94f862e2786c5e9b558ae6ab6f524842949c0953 (diff)
Translate so far untranslated error strings.
Change-Id: I7d91404052ce987ea700e698c024475211bad025 Reviewed-by: Fabian Bumberger <fbumberger@rim.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp')
-rw-r--r--src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp b/src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp
index 03c23df0..4cf73dc1 100644
--- a/src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp
+++ b/src/bluetooth/qbluetoothservicediscoveryagent_qnx.cpp
@@ -83,7 +83,7 @@ void QBluetoothServiceDiscoveryAgentPrivate::start(const QBluetoothAddress &addr
} else {
qCWarning(QT_BT_QNX) << "Failed to open " << filePath;
error = QBluetoothServiceDiscoveryAgent::InputOutputError;
- errorString = QStringLiteral("Failed to open remote device file");
+ errorString = QBluetoothServiceDiscoveryAgent::tr("Failed to open remote device file");
q->error(error);
}
_q_serviceDiscoveryFinished();
@@ -97,7 +97,7 @@ void QBluetoothServiceDiscoveryAgentPrivate::start(const QBluetoothAddress &addr
} else {
qCWarning(QT_BT_QNX) << "Service Discovery: Failed to connect to rdNotifier";
error = QBluetoothServiceDiscoveryAgent::InputOutputError;
- errorString = QStringLiteral("Failed to connect to rdNotifier");
+ errorString = QBluetoothServiceDiscoveryAgent::tr("Failed to connect to notifier");
q->error(error);
_q_serviceDiscoveryFinished();
return;
@@ -245,7 +245,7 @@ void QBluetoothServiceDiscoveryAgentPrivate::queryTimeout()
{
Q_Q(QBluetoothServiceDiscoveryAgent);
error = QBluetoothServiceDiscoveryAgent::UnknownError;
- errorString = QStringLiteral("Service query timed out");
+ errorString = QBluetoothServiceDiscoveryAgent::tr("Service query timed out");
q->error(error);
_q_serviceDiscoveryFinished();
}