2022-05-17 08:02:19 +00:00
|
|
|
From 506d0372178134f208fd08b3f6b9499fc0e14a5e Mon Sep 17 00:00:00 2001
|
2022-03-08 11:00:00 +00:00
|
|
|
From: Joni Poikelin <joni.poikelin@qt.io>
|
|
|
|
Date: Thu, 3 Feb 2022 14:01:50 +0200
|
2022-05-17 08:02:19 +00:00
|
|
|
Subject: [PATCH 28/38] Fix crash if no input method module could be loaded
|
2022-03-08 11:00:00 +00:00
|
|
|
|
|
|
|
Pick-to: 6.2 6.3 5.15
|
|
|
|
Change-Id: I8f346def616606a6c5540856bd08a84ee7ed5ca2
|
|
|
|
Reviewed-by: David Edmundson <davidedmundson@kde.org>
|
|
|
|
(cherry picked from commit 49fb7248f6ab7de046e2179c7861951ea1169e9b)
|
|
|
|
---
|
|
|
|
src/client/qwaylandintegration.cpp | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/src/client/qwaylandintegration.cpp b/src/client/qwaylandintegration.cpp
|
|
|
|
index 3b876047..fbf00c6b 100644
|
|
|
|
--- a/src/client/qwaylandintegration.cpp
|
|
|
|
+++ b/src/client/qwaylandintegration.cpp
|
|
|
|
@@ -491,7 +491,7 @@ void QWaylandIntegration::reconfigureInputContext()
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
- qCDebug(lcQpaWayland) << "using input method:" << inputContext()->metaObject()->className();
|
|
|
|
+ qCDebug(lcQpaWayland) << "using input method:" << (inputContext() ? inputContext()->metaObject()->className() : "<none>");
|
|
|
|
}
|
|
|
|
|
|
|
|
QWaylandShellIntegration *QWaylandIntegration::createShellIntegration(const QString &integrationName)
|
|
|
|
--
|
2022-05-17 08:02:19 +00:00
|
|
|
2.36.1
|
2022-03-08 11:00:00 +00:00
|
|
|
|