aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--DESIGN2
-rw-r--r--autotests/kentrymaptest.h2
-rw-r--r--docs/DESIGN.kconfig2
-rw-r--r--src/core/kconfig_p.h2
-rw-r--r--src/core/kconfigbackend.cpp2
-rw-r--r--src/core/kconfigdata.cpp2
-rw-r--r--src/core/kconfigdata_p.h (renamed from src/core/kconfigdata.h)4
-rw-r--r--src/core/kconfiggroup.cpp2
-rw-r--r--src/core/kconfigini.cpp2
9 files changed, 10 insertions, 10 deletions
diff --git a/DESIGN b/DESIGN
index 3cccc1ca..a5fbd2b5 100644
--- a/DESIGN
+++ b/DESIGN
@@ -1,7 +1,7 @@
If you add a major new feature, suggest using it in
http://techbase.kde.org/Development/Tutorials/KConfig
-kconfigdata.h contains definitions of the data formats used by kconfig.
+kconfigdata_p.h contains definitions of the data formats used by kconfig.
Configuration entries are stored as "KEntry". They are indexed with "KEntryKey".
The primary store is a "KEntryMap" which is defined as a QMap from "KEntryKey"
diff --git a/autotests/kentrymaptest.h b/autotests/kentrymaptest.h
index faf3ad6d..8ad36a31 100644
--- a/autotests/kentrymaptest.h
+++ b/autotests/kentrymaptest.h
@@ -7,7 +7,7 @@
#ifndef KENTRYMAPTEST_H
#define KENTRYMAPTEST_H
-#include "kconfigdata.h"
+#include "kconfigdata_p.h"
#include <QObject>
class KEntryMapTest : public QObject
diff --git a/docs/DESIGN.kconfig b/docs/DESIGN.kconfig
index 1aa0a3f8..68994aed 100644
--- a/docs/DESIGN.kconfig
+++ b/docs/DESIGN.kconfig
@@ -1,4 +1,4 @@
-kconfigdata.h contains definitions of the data formats used by kconfig.
+kconfigdata_p.h contains definitions of the data formats used by kconfig.
Configuration entries are stored as "KEntry". They are indexed with "KEntryKey".
The primary store is a "KEntryMap" which is defined as a QMap from "KEntryKey"
diff --git a/src/core/kconfig_p.h b/src/core/kconfig_p.h
index b201df17..e5c9d869 100644
--- a/src/core/kconfig_p.h
+++ b/src/core/kconfig_p.h
@@ -12,7 +12,7 @@
#define KCONFIG_P_H
#include "kconfigbackend_p.h"
-#include "kconfigdata.h"
+#include "kconfigdata_p.h"
#include "kconfiggroup.h"
#include <QDir>
diff --git a/src/core/kconfigbackend.cpp b/src/core/kconfigbackend.cpp
index 13455dbd..6a5984a3 100644
--- a/src/core/kconfigbackend.cpp
+++ b/src/core/kconfigbackend.cpp
@@ -16,7 +16,7 @@
#include <QHash>
#include <QStringList>
-#include "kconfigdata.h"
+#include "kconfigdata_p.h"
#include "kconfigini_p.h"
typedef QExplicitlySharedDataPointer<KConfigBackend> BackendPtr;
diff --git a/src/core/kconfigdata.cpp b/src/core/kconfigdata.cpp
index ada7125f..b479a598 100644
--- a/src/core/kconfigdata.cpp
+++ b/src/core/kconfigdata.cpp
@@ -7,7 +7,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
-#include <kconfigdata.h>
+#include "kconfigdata_p.h"
QDebug operator<<(QDebug dbg, const KEntryKey &key)
{
diff --git a/src/core/kconfigdata.h b/src/core/kconfigdata_p.h
index 0ca228fe..3554568e 100644
--- a/src/core/kconfigdata.h
+++ b/src/core/kconfigdata_p.h
@@ -7,8 +7,8 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
-#ifndef KCONFIGDATA_H
-#define KCONFIGDATA_H
+#ifndef KCONFIGDATA_P_H
+#define KCONFIGDATA_P_H
#include <QByteArray>
#include <QDebug>
diff --git a/src/core/kconfiggroup.cpp b/src/core/kconfiggroup.cpp
index c065be81..5ee9f6ab 100644
--- a/src/core/kconfiggroup.cpp
+++ b/src/core/kconfiggroup.cpp
@@ -13,7 +13,7 @@
#include "kconfig.h"
#include "kconfig_core_log_settings.h"
#include "kconfig_p.h"
-#include "kconfigdata.h"
+#include "kconfigdata_p.h"
#include "ksharedconfig.h"
#include <QDate>
diff --git a/src/core/kconfigini.cpp b/src/core/kconfigini.cpp
index 8c81db8f..c7861f66 100644
--- a/src/core/kconfigini.cpp
+++ b/src/core/kconfigini.cpp
@@ -13,7 +13,7 @@
#include "kconfig.h"
#include "kconfig_core_log_settings.h"
#include "kconfigbackend_p.h"
-#include "kconfigdata.h"
+#include "kconfigdata_p.h"
#include <QDateTime>
#include <QDebug>