Clean up some qDebug() which are not intended

This amends 636d52abb37abd400407a564ec8ab1f355cf9766.

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>
This commit is contained in:
Liang Qi 2021-11-11 12:35:50 +01:00
parent bc6f446738
commit 80600c9f3d

View File

@ -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();
}