summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylandintegration.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2021-11-11 12:35:50 +0100
committerLiang Qi <liang.qi@qt.io>2021-11-11 13:19:34 +0100
commit440238fdc314eb228f09544b05a99655c527ef9e (patch)
treebc20bbeb8ee3a4885f2767e75c7395603a86afee /src/client/qwaylandintegration.cpp
parentd4a7faff1f41881169ea3c00139ddc9e85d916ab (diff)
Clean up some qDebug() which are not intended
This amends cac38b4c15cf64d44920eb301acdafd768d969a3. Change-Id: I7dbd06b75d994d4957f0fbafed2f708f900a949d Reviewed-by: David Edmundson <davidedmundson@kde.org> Reviewed-by: Inho Lee <inho.lee@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/client/qwaylandintegration.cpp')
-rw-r--r--src/client/qwaylandintegration.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/client/qwaylandintegration.cpp b/src/client/qwaylandintegration.cpp
index dc96572c2..67af87cb2 100644
--- a/src/client/qwaylandintegration.cpp
+++ b/src/client/qwaylandintegration.cpp
@@ -495,16 +495,12 @@ void QWaylandIntegration::reconfigureInputContext()
" use QT_IM_MODULE=qtvirtualkeyboard at compositor-side.";
if (requested.isNull()) {
- if (mDisplay->textInputMethodManager() != nullptr) {
+ if (mDisplay->textInputMethodManager() != nullptr)
mInputContext.reset(new QWaylandInputMethodContext(mDisplay.data()));
- qDebug() << "create QWaylandInputMethodContext" << inputContext();
- } else if (mDisplay->textInputManager() != nullptr) {
+ else if (mDisplay->textInputManager() != nullptr)
mInputContext.reset(new QWaylandInputContext(mDisplay.data()));
- qDebug() << "create QWaylandInputContext" << inputContext();
- }
} else {
mInputContext.reset(QPlatformInputContextFactory::create(requested));
- qDebug() << "create QPlatformInputContextFactory::create" << inputContext();
}
const QString defaultInputContext(QStringLiteral("compose"));
@@ -518,7 +514,6 @@ void QWaylandIntegration::reconfigureInputContext()
}
#endif
- qDebug() << "mInputContext " << inputContext();
qCDebug(lcQpaWayland) << "using input method:" << inputContext()->metaObject()->className();
}