This commit is contained in:
Klaus Basan
2019-10-10 20:11:19 +02:00
committed by Mat Sutcliffe
parent f15674330f
commit c38c8374a3

View File

@@ -78,13 +78,13 @@ namespace BlackCore
void IContext::setDebugEnabled(bool debug) void IContext::setDebugEnabled(bool debug)
{ {
if (this->m_debugEnabled == debug) { return; } if (m_debugEnabled == debug) { return; }
emit this->changedLogOrDebugSettings(); emit this->changedLogOrDebugSettings();
} }
bool IContext::isDebugEnabled() const bool IContext::isDebugEnabled() const
{ {
return this->m_debugEnabled; return m_debugEnabled;
} }
void IContext::relayBaseClassSignals(const QString &serviceName, QDBusConnection &connection, const QString &objectPath, const QString &interfaceName) void IContext::relayBaseClassSignals(const QString &serviceName, QDBusConnection &connection, const QString &objectPath, const QString &interfaceName)