* asserts for relaySignals
* relay "message" in connection status changed
* bug in status message
* bug in saving settings

refs #198 refs #199 refs #207 refs #209
This commit is contained in:
Klaus Basan
2014-04-16 23:51:19 +02:00
parent 7930560be6
commit a70bc1cb38
12 changed files with 72 additions and 33 deletions

View File

@@ -35,8 +35,10 @@ namespace BlackCore
*/
void CContextSettingsProxy::relaySignals(const QString &serviceName, QDBusConnection &connection)
{
connection.connect(serviceName, IContextSettings::ObjectPath(), IContextSettings::InterfaceName(),
"changedSettings", this, SIGNAL(changedSettings(uint)));
bool s = connection.connect(serviceName, IContextSettings::ObjectPath(), IContextSettings::InterfaceName(),
"changedSettings", this, SIGNAL(changedSettings(uint)));
Q_ASSERT(s);
Q_UNUSED(s);
}
/*