diff options
author | Montel Laurent <montel@kde.org> | 2015-08-16 14:00:54 +0200 |
---|---|---|
committer | Montel Laurent <montel@kde.org> | 2015-08-16 14:00:54 +0200 |
commit | 4de3053788974c1f7b7b4926f006e29c7a3b250d (patch) | |
tree | 3ba994acb5542918010241a370d6901b3121da7e /src/core/kconfigbackend.h | |
parent | 2716b453a5cb859184784e12c3e0dc5f701fc984 (diff) | |
download | kconfig-4de3053788974c1f7b7b4926f006e29c7a3b250d.tar.gz kconfig-4de3053788974c1f7b7b4926f006e29c7a3b250d.tar.bz2 |
Rename private class to avoid exporting it accidentally
Diffstat (limited to 'src/core/kconfigbackend.h')
-rw-r--r-- | src/core/kconfigbackend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kconfigbackend.h b/src/core/kconfigbackend.h index 550bf396..631769be 100644 --- a/src/core/kconfigbackend.h +++ b/src/core/kconfigbackend.h @@ -29,6 +29,7 @@ #include <kconfigcore_export.h> #include <kconfigbase.h> +class KConfigBackendPrivate; class KEntryMap; class QFile; @@ -194,8 +195,7 @@ protected: void setLocalFilePath(const QString &file); private: - class Private; - Private *const d; + KConfigBackendPrivate *const d; }; Q_DECLARE_OPERATORS_FOR_FLAGS(KConfigBackend::ParseOptions) |