diff options
| author | Nicolas Fella <nicolas.fella@gmx.de> | 2020-12-10 20:47:31 +0100 | 
|---|---|---|
| committer | Nicolas Fella <nicolas.fella@gmx.de> | 2020-12-12 21:20:31 +0000 | 
| commit | b3b17d054970e48479aa3afe0a9dfd836efb8536 (patch) | |
| tree | 3f4daaf878c5818a85a575a75a76f95c5edd4f35 | |
| parent | 28a077b06d2d5052525b0e234b5971ace5675154 (diff) | |
| download | kconfig-b3b17d054970e48479aa3afe0a9dfd836efb8536.tar.gz kconfig-b3b17d054970e48479aa3afe0a9dfd836efb8536.tar.bz2 | |
Properly include QStringList
Forward declaring it breaks with Qt6
| -rw-r--r-- | src/core/kauthorized.h | 3 | ||||
| -rw-r--r-- | src/core/kconfigbase.h | 2 | ||||
| -rw-r--r-- | src/kconf_update/kconfigutils.h | 3 | 
3 files changed, 5 insertions, 3 deletions
| diff --git a/src/core/kauthorized.h b/src/core/kauthorized.h index 88d2e398..57a99e23 100644 --- a/src/core/kauthorized.h +++ b/src/core/kauthorized.h @@ -10,9 +10,10 @@  #include <kconfigcore_export.h> +#include <QStringList> +  class QUrl;  class QString; -class QStringList;  /**  * The functions in this namespace provide the core of the Kiosk action diff --git a/src/core/kconfigbase.h b/src/core/kconfigbase.h index a4fed200..0682a6b5 100644 --- a/src/core/kconfigbase.h +++ b/src/core/kconfigbase.h @@ -13,9 +13,9 @@  #include <kconfigcore_export.h> +#include <QStringList>  #include <QtGlobal> -class QStringList;  class KConfigGroup;  class KConfigBasePrivate; diff --git a/src/kconf_update/kconfigutils.h b/src/kconf_update/kconfigutils.h index 4656be1d..5b07c4fe 100644 --- a/src/kconf_update/kconfigutils.h +++ b/src/kconf_update/kconfigutils.h @@ -9,8 +9,9 @@  #ifndef KCONFIGUTILS_H  #define KCONFIGUTILS_H +#include <QStringList> +  class QString; -class QStringList;  class KConfig;  class KConfigGroup; | 
