Android: Remove unused #includes in splashscreenwidget.cpp

Change-Id: Ib2a7f3087602516d69b8e2553f16953a2287bbc1
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2022-09-27 09:03:01 +02:00
parent f2783901d0
commit be931daff9
2 changed files with 4 additions and 10 deletions

View File

@@ -7,8 +7,6 @@
#include <texteditor/texteditor.h> #include <texteditor/texteditor.h>
#include <utils/utilsicons.h> #include <utils/utilsicons.h>
#include <QFileDialog>
#include <QFileInfo>
#include <QGridLayout> #include <QGridLayout>
#include <QLabel> #include <QLabel>
#include <QLoggingCategory> #include <QLoggingCategory>
@@ -18,8 +16,7 @@
using namespace Utils; using namespace Utils;
namespace Android { namespace Android::Internal {
namespace Internal {
static Q_LOGGING_CATEGORY(androidManifestEditorLog, "qtc.android.splashScreenWidget", QtWarningMsg) static Q_LOGGING_CATEGORY(androidManifestEditorLog, "qtc.android.splashScreenWidget", QtWarningMsg)
@@ -244,5 +241,4 @@ void SplashScreenWidget::setImageFileName(const QString &imageFileName)
m_imageFileName = imageFileName; m_imageFileName = imageFileName;
} }
} // namespace Internal } // Android::Internal
} // namespace Android

View File

@@ -15,8 +15,7 @@ class QColor;
class QImage; class QImage;
QT_END_NAMESPACE QT_END_NAMESPACE
namespace Android { namespace Android::Internal {
namespace Internal {
class SplashScreenWidget : public QWidget class SplashScreenWidget : public QWidget
{ {
@@ -73,5 +72,4 @@ private:
bool m_showImageFullScreen = false; bool m_showImageFullScreen = false;
}; };
} // namespace Internal } // Android::Internal
} // namespace Android