aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Kauffmann <johanneskauffmann@hotmail.com>2022-08-27 21:45:55 +0000
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-08-29 20:28:57 +0000
commit01edef856960eaf54da5b12ff7f821fc2fa1838f (patch)
tree9c7b0e3cc450719438840b40f4394b5dfbba5b59
parent783f7a21fb4e647ac75102506151b338c16ea2b8 (diff)
Purge remaining usage of Q_NULLPTR
Change-Id: I61aa2bbfc5131eac1fc357255ed3acaa6c24a8af Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 28591f9f48f8f7d9061338aed7497dad1cee7135) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/plugin/plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin/plugin.cpp b/src/plugin/plugin.cpp
index 9ecef94f..bd52f0e0 100644
--- a/src/plugin/plugin.cpp
+++ b/src/plugin/plugin.cpp
@@ -27,10 +27,10 @@ QPlatformInputContext *QVirtualKeyboardPlugin::create(const QString &system, con
Q_UNUSED(paramList);
if (!qEnvironmentVariableIsSet(inputMethodEnvVarName) || qgetenv(inputMethodEnvVarName) != pluginName)
- return Q_NULLPTR;
+ return nullptr;
if (system.compare(system, QLatin1String(pluginName), Qt::CaseInsensitive) != 0)
- return Q_NULLPTR;
+ return nullptr;
#if defined(Q_OS_WIN)
// QTBUG-93042