summaryrefslogtreecommitdiffstats
path: root/src/gui/platform/unix/qgenericunixthemes.cpp
diff options
context:
space:
mode:
authorAxel Spoerl <axel.spoerl@qt.io>2023-07-18 10:39:59 +0200
committerAxel Spoerl <axel.spoerl@qt.io>2023-07-18 14:37:53 +0000
commit31da99954282908fc896989344c4be104ae6e62f (patch)
treef7c9a535703c36217081ff7db9587bae337db780 /src/gui/platform/unix/qgenericunixthemes.cpp
parent32d44b612c0e412b10af021c9c6bc911e2f01d04 (diff)
QGenericUnixThemesDBusListener: Remove stray qDebug()
Remove a stray qDebug() statement, that was forgotten in the source. Pick-to: 6.6 6.5 Change-Id: I5c413b4356f05570474fa2a0d6ad661785c818b0 Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'src/gui/platform/unix/qgenericunixthemes.cpp')
-rw-r--r--src/gui/platform/unix/qgenericunixthemes.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/platform/unix/qgenericunixthemes.cpp b/src/gui/platform/unix/qgenericunixthemes.cpp
index 6cd2c1b2d4..36731a6e5d 100644
--- a/src/gui/platform/unix/qgenericunixthemes.cpp
+++ b/src/gui/platform/unix/qgenericunixthemes.cpp
@@ -276,7 +276,6 @@ void QGenericUnixThemeDBusListener::loadJson(const QString &fileName)
QJsonParseError error;
QJsonDocument doc = QJsonDocument::fromJson(file.readAll(), &error);
CHECK((error.error == QJsonParseError::NoError), error.errorString());
- qDebug() << doc;
CHECK(doc.isObject(), "Parse Error: Expected root object" << s_root);
const QJsonObject &root = doc.object();