* 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

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