diff options
author | hjk <hjk@qt.io> | 2022-09-27 09:03:01 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2022-09-28 07:02:55 +0000 |
commit | be931daff9417a13d2d0efda408790a3f7fd8031 (patch) | |
tree | 05566b935fdbf9576cd403d9fe73910591f65e02 /src/plugins/android/splashscreenwidget.cpp | |
parent | f2783901d07eb13c822ba1c1ca8ca42c1b518e0b (diff) | |
download | qt-creator-be931daff9417a13d2d0efda408790a3f7fd8031.tar.gz |
Android: Remove unused #includes in splashscreenwidget.cpp
Change-Id: Ib2a7f3087602516d69b8e2553f16953a2287bbc1
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/android/splashscreenwidget.cpp')
-rw-r--r-- | src/plugins/android/splashscreenwidget.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/plugins/android/splashscreenwidget.cpp b/src/plugins/android/splashscreenwidget.cpp index b15f855697..35bd714970 100644 --- a/src/plugins/android/splashscreenwidget.cpp +++ b/src/plugins/android/splashscreenwidget.cpp @@ -7,8 +7,6 @@ #include <texteditor/texteditor.h> #include <utils/utilsicons.h> -#include <QFileDialog> -#include <QFileInfo> #include <QGridLayout> #include <QLabel> #include <QLoggingCategory> @@ -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 |