diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/core/kconfigbackend.h | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 72a46b91..ed7edba1 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -40,7 +40,6 @@ ecm_generate_headers(KConfigCore_HEADERS HEADER_NAMES KAuthorized KConfig - KConfigBackend KConfigBase KConfigGroup KDesktopFile @@ -66,7 +65,6 @@ if (PythonModuleGeneration_FOUND) HEADERS kauthorized.h kconfig.h - kconfigbackend.h kconfigbase.h kconfiggroup.h kdesktopfile.h diff --git a/src/core/kconfigbackend.h b/src/core/kconfigbackend.h index 7dec4b88..332a0b4e 100644 --- a/src/core/kconfigbackend.h +++ b/src/core/kconfigbackend.h @@ -41,11 +41,13 @@ class QDateTime; * * Provides the implementation for accessing configuration sources. * - * KDELibs only provides an INI backend, but this class can be used + * KConfig only provides an INI backend, but this class can be used * to create plugins that allow access to other file formats and * configuration systems. + * + * \internal */ -class KCONFIGCORE_EXPORT KConfigBackend : public QObject, public QSharedData +class KConfigBackend : public QObject, public QSharedData { Q_OBJECT @@ -201,10 +203,12 @@ private: Q_DECLARE_OPERATORS_FOR_FLAGS(KConfigBackend::ParseOptions) Q_DECLARE_OPERATORS_FOR_FLAGS(KConfigBackend::WriteOptions) +#if 0 // TODO re-enable if the plugin loading code is re-enabled /** * Register a KConfig backend when it is contained in a loadable module */ #define K_EXPORT_KCONFIGBACKEND(libname, classname) \ K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) +#endif #endif // KCONFIGBACKEND_H |