From be931daff9417a13d2d0efda408790a3f7fd8031 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 27 Sep 2022 09:03:01 +0200 Subject: [PATCH] Android: Remove unused #includes in splashscreenwidget.cpp Change-Id: Ib2a7f3087602516d69b8e2553f16953a2287bbc1 Reviewed-by: Alessandro Portale --- src/plugins/android/splashscreenwidget.cpp | 8 ++------ src/plugins/android/splashscreenwidget.h | 6 ++---- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/plugins/android/splashscreenwidget.cpp b/src/plugins/android/splashscreenwidget.cpp index b15f855697c..35bd714970f 100644 --- a/src/plugins/android/splashscreenwidget.cpp +++ b/src/plugins/android/splashscreenwidget.cpp @@ -7,8 +7,6 @@ #include #include -#include -#include #include #include #include @@ -18,8 +16,7 @@ using namespace Utils; -namespace Android { -namespace Internal { +namespace Android::Internal { static Q_LOGGING_CATEGORY(androidManifestEditorLog, "qtc.android.splashScreenWidget", QtWarningMsg) @@ -244,5 +241,4 @@ void SplashScreenWidget::setImageFileName(const QString &imageFileName) m_imageFileName = imageFileName; } -} // namespace Internal -} // namespace Android +} // Android::Internal diff --git a/src/plugins/android/splashscreenwidget.h b/src/plugins/android/splashscreenwidget.h index a430577c5fc..984b5d9bca1 100644 --- a/src/plugins/android/splashscreenwidget.h +++ b/src/plugins/android/splashscreenwidget.h @@ -15,8 +15,7 @@ class QColor; class QImage; QT_END_NAMESPACE -namespace Android { -namespace Internal { +namespace Android::Internal { class SplashScreenWidget : public QWidget { @@ -73,5 +72,4 @@ private: bool m_showImageFullScreen = false; }; -} // namespace Internal -} // namespace Android +} // Android::Internal