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