diff --git a/src/bluetooth/qlowenergycontroller.cpp b/src/bluetooth/qlowenergycontroller.cpp index 053ca9802b2252605aa1242aa3ba17a0c5e1bf88..004ee3be85b979d635e5407b40514db07c4e5844 100644 --- a/src/bluetooth/qlowenergycontroller.cpp +++ b/src/bluetooth/qlowenergycontroller.cpp @@ -138,6 +138,8 @@ Q_DECLARE_LOGGING_CATEGORY(QT_BT) This value was introduced by Qt 5.5. \value AdvertisingError The attempt to start advertising failed. This value was introduced by Qt 5.7. + \value RemoteHostClosedError The remote device closed the connection. + This value was introduced by Qt 5.10. */ /*! @@ -299,6 +301,9 @@ void QLowEnergyControllerPrivate::setError( case QLowEnergyController::AdvertisingError: errorString = QLowEnergyController::tr("Error occurred trying to start advertising"); break; + case QLowEnergyController::RemoteHostClosedError: + errorString = QLowEnergyController::tr("Remote device closed the connection"); + break; case QLowEnergyController::NoError: return; default: diff --git a/src/bluetooth/qlowenergycontroller.h b/src/bluetooth/qlowenergycontroller.h index 1c4fa83f1445678545a64b3b4ec256e83fdc4ab7..1a84b05b41d696463d939f5667d9dea560f7fd60 100644 --- a/src/bluetooth/qlowenergycontroller.h +++ b/src/bluetooth/qlowenergycontroller.h @@ -66,6 +66,7 @@ public: InvalidBluetoothAdapterError, ConnectionError, AdvertisingError, + RemoteHostClosedError }; Q_ENUM(Error)