From c38c8374a32cc88815333af711af750d59c2d8d0 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Thu, 10 Oct 2019 20:11:19 +0200 Subject: [PATCH] Style --- src/blackcore/context/context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blackcore/context/context.cpp b/src/blackcore/context/context.cpp index cfec593a0..00ada32ac 100644 --- a/src/blackcore/context/context.cpp +++ b/src/blackcore/context/context.cpp @@ -78,13 +78,13 @@ namespace BlackCore void IContext::setDebugEnabled(bool debug) { - if (this->m_debugEnabled == debug) { return; } + if (m_debugEnabled == debug) { return; } emit this->changedLogOrDebugSettings(); } 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)