diff options
| author | Laurent Montel <montel@kde.org> | 2020-10-23 08:32:00 +0200 | 
|---|---|---|
| committer | Laurent Montel <montel@kde.org> | 2020-10-23 08:32:00 +0200 | 
| commit | 945ff64855fc742ab06185767ce769d78495c9cb (patch) | |
| tree | 7a0cd93911fb43b35fcd7ec6a65ed1b77c62ad33 | |
| parent | c81dfc9c2006293dc9a48f0aaba204af28fa6b98 (diff) | |
| download | kconfig-945ff64855fc742ab06185767ce769d78495c9cb.tar.gz kconfig-945ff64855fc742ab06185767ce769d78495c9cb.tar.bz2 | |
If include is define in .h remove it if it's defined in .cpp too (scripted)
| -rw-r--r-- | autotests/kconfig_compiler/kconfigcompiler_test.cpp | 1 | ||||
| -rw-r--r-- | autotests/kentrymaptest.cpp | 1 | ||||
| -rw-r--r-- | src/core/kconfig.cpp | 1 | ||||
| -rw-r--r-- | src/kconfig_compiler/KConfigCodeGeneratorBase.cpp | 3 | ||||
| -rw-r--r-- | src/kconfig_compiler/KConfigHeaderGenerator.cpp | 1 | ||||
| -rw-r--r-- | src/kconfig_compiler/KConfigSourceGenerator.cpp | 1 | ||||
| -rw-r--r-- | src/kconfig_compiler/KConfigXmlParser.cpp | 1 | 
7 files changed, 0 insertions, 9 deletions
| diff --git a/autotests/kconfig_compiler/kconfigcompiler_test.cpp b/autotests/kconfig_compiler/kconfigcompiler_test.cpp index bb4dd7c0..c16075d6 100644 --- a/autotests/kconfig_compiler/kconfigcompiler_test.cpp +++ b/autotests/kconfig_compiler/kconfigcompiler_test.cpp @@ -8,7 +8,6 @@  */  #include <QDir> -#include <QFile>  #include <QProcess>  #include <QString>  #include <QtTest> diff --git a/autotests/kentrymaptest.cpp b/autotests/kentrymaptest.cpp index 507a88f6..a84c4b4e 100644 --- a/autotests/kentrymaptest.cpp +++ b/autotests/kentrymaptest.cpp @@ -7,7 +7,6 @@  #include "kentrymaptest.h"  #include <QtTest> -#include "kconfigdata.h"  const QByteArray group1("A Group");  const QByteArray key1("A Key"); diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp index 19e82ffe..92c05bae 100644 --- a/src/core/kconfig.cpp +++ b/src/core/kconfig.cpp @@ -21,7 +21,6 @@  #include <QCoreApplication>  #include <QProcess> -#include <QStandardPaths>  #include <QByteArray>  #include <QFile>  #include <QLocale> diff --git a/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp b/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp index 48a24af5..6bcd2911 100644 --- a/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp +++ b/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp @@ -12,10 +12,7 @@  */  #include "KConfigCodeGeneratorBase.h" -#include "KConfigParameters.h" -#include "KConfigCommonStructs.h" -#include <QTextStream>  #include <QLatin1Char>  #include <QFileInfo> diff --git a/src/kconfig_compiler/KConfigHeaderGenerator.cpp b/src/kconfig_compiler/KConfigHeaderGenerator.cpp index ec353158..8bc5f47d 100644 --- a/src/kconfig_compiler/KConfigHeaderGenerator.cpp +++ b/src/kconfig_compiler/KConfigHeaderGenerator.cpp @@ -12,7 +12,6 @@  */  #include "KConfigHeaderGenerator.h" -#include "KConfigCommonStructs.h"  #include <QTextStream>  #include <QDebug> diff --git a/src/kconfig_compiler/KConfigSourceGenerator.cpp b/src/kconfig_compiler/KConfigSourceGenerator.cpp index 2a8cf7f3..97db81ba 100644 --- a/src/kconfig_compiler/KConfigSourceGenerator.cpp +++ b/src/kconfig_compiler/KConfigSourceGenerator.cpp @@ -12,7 +12,6 @@  */  #include "KConfigSourceGenerator.h" -#include "KConfigCommonStructs.h"  #include <QRegularExpression> diff --git a/src/kconfig_compiler/KConfigXmlParser.cpp b/src/kconfig_compiler/KConfigXmlParser.cpp index 3120d006..e1010564 100644 --- a/src/kconfig_compiler/KConfigXmlParser.cpp +++ b/src/kconfig_compiler/KConfigXmlParser.cpp @@ -12,7 +12,6 @@  */  #include "KConfigXmlParser.h" -#include "KConfigParameters.h"  #include <QDomAttr>  #include <QDomElement> | 
