summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/imports/bluetooth/qdeclarativebluetoothservice.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/imports/bluetooth/qdeclarativebluetoothservice.cpp b/src/imports/bluetooth/qdeclarativebluetoothservice.cpp
index 9e966ab8..297dfc82 100644
--- a/src/imports/bluetooth/qdeclarativebluetoothservice.cpp
+++ b/src/imports/bluetooth/qdeclarativebluetoothservice.cpp
@@ -159,6 +159,7 @@ void QDeclarativeBluetoothService::setDeviceAddress(const QString &newAddress)
QBluetoothAddress address(newAddress);
QBluetoothDeviceInfo device(address, QString(), QBluetoothDeviceInfo::ComputerDevice);
d->m_service->setDevice(device);
+ emit detailsChanged();
}
/*!
@@ -176,6 +177,7 @@ QString QDeclarativeBluetoothService::serviceName() const
void QDeclarativeBluetoothService::setServiceName(const QString &name)
{
d->m_service->setServiceName(name);
+ emit detailsChanged();
}