Skip to content
Snippets Groups Projects
Commit bc004a63 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

interface: remove DebugSignal

MessageSend will now be a ConfigurationSignal in accordance with
the modifications in https://review.jami.net/c/ring-daemon/+/16626.

Change-Id: I06a96c00da9dcd962db392bde1d3cacf5594e70a
parent 5a36305e
Branches
No related tags found
No related merge requests found
...@@ -54,7 +54,6 @@ public: ...@@ -54,7 +54,6 @@ public:
using DRing::ConfigurationSignal; using DRing::ConfigurationSignal;
using DRing::AudioSignal; using DRing::AudioSignal;
using DRing::DataTransferSignal; using DRing::DataTransferSignal;
using DRing::DebugSignal;
setObjectName("ConfigurationManagerInterface"); setObjectName("ConfigurationManagerInterface");
confHandlers = { confHandlers = {
...@@ -220,9 +219,10 @@ public: ...@@ -220,9 +219,10 @@ public:
QString(uri.c_str()), QString(uri.c_str()),
banned); banned);
}), }),
exportable_callback<DebugSignal::MessageSend>([this](const std::string& message) { exportable_callback<ConfigurationSignal::MessageSend>(
Q_EMIT this->debugMessageReceived(QString(message.c_str())); [this](const std::string& message) {
}), Q_EMIT this->debugMessageReceived(QString(message.c_str()));
}),
exportable_callback<ConfigurationSignal::ComposingStatusChanged>( exportable_callback<ConfigurationSignal::ComposingStatusChanged>(
[this](const std::string& account_id, const std::string& from, int status) { [this](const std::string& account_id, const std::string& from, int status) {
Q_EMIT this->composingStatusChanged(QString(account_id.c_str()), Q_EMIT this->composingStatusChanged(QString(account_id.c_str()),
......
...@@ -37,7 +37,6 @@ InstanceManagerInterface::InstanceManagerInterface() ...@@ -37,7 +37,6 @@ InstanceManagerInterface::InstanceManagerInterface()
using DRing::ConfigurationSignal; using DRing::ConfigurationSignal;
using DRing::PresenceSignal; using DRing::PresenceSignal;
using DRing::DataTransferSignal; using DRing::DataTransferSignal;
using DRing::DebugSignal;
#ifdef ENABLE_VIDEO #ifdef ENABLE_VIDEO
using DRing::VideoSignal; using DRing::VideoSignal;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment