summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2021-02-04 16:19:39 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2021-02-05 15:34:00 +0100
commit968f4001a86d4a3321ac41f6b2808ccb3b1271fe (patch)
tree9d6cada223b36b4c181ff36c84f5fe14c5639db4
parent0bae5fbabbb64371b1b6c646ce0a32e084e42f83 (diff)
Fix warning from syncqt.pl about header inclusion path
After a "QtCore: WARNING:" intro (separated to avoid being mistaken for a footer) syncqt.pl said: .../qtbase/src/corelib/kernel/qjnienvironment.h includes QScopedPointer when it should include QtCore/QScopedPointer Change-Id: Iaa1f025367b7321af9c5de27196ebf271f9179df Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--src/corelib/kernel/qjnienvironment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qjnienvironment.h b/src/corelib/kernel/qjnienvironment.h
index e19a3935da..5a7accf004 100644
--- a/src/corelib/kernel/qjnienvironment.h
+++ b/src/corelib/kernel/qjnienvironment.h
@@ -40,7 +40,7 @@
#ifndef QJNI_ENVIRONMENT_H
#define QJNI_ENVIRONMENT_H
-#include <QScopedPointer>
+#include <QtCore/QScopedPointer>
#if defined(Q_OS_ANDROID) && !defined(Q_OS_ANDROID_EMBEDDED)
#include <jni.h>