refs #316 Removed old statusMessage signals and sendStatusMessage slots.

This commit is contained in:
Mathew Sutcliffe
2014-09-25 21:43:40 +01:00
parent b1c74d81e5
commit aef7135e28
15 changed files with 0 additions and 135 deletions

View File

@@ -34,12 +34,6 @@ namespace BlackCore
{
// signals originating from impl side
bool s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(),
"statusMessage", this, SIGNAL(statusMessage(BlackMisc::CStatusMessage)));
Q_ASSERT(s);
s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(),
"statusMessages", this, SIGNAL(statusMessages(BlackMisc::CStatusMessageList)));
Q_ASSERT(s);
s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(),
"componentChanged", this, SIGNAL(componentChanged(uint, uint)));
Q_ASSERT(s);
@@ -54,22 +48,6 @@ namespace BlackCore
return t;
}
/*
* Status messages
*/
void CContextApplicationProxy::sendStatusMessage(const BlackMisc::CStatusMessage &message)
{
this->m_dBusInterface->callDBus(QLatin1Literal("sendStatusMessage"), message);
}
/*
* Status messages
*/
void CContextApplicationProxy::sendStatusMessages(const BlackMisc::CStatusMessageList &messages)
{
this->m_dBusInterface->callDBus(QLatin1Literal("sendStatusMessages"), messages);
}
/*
* Component has changed
*/