diff options
author | David Faure <faure@kde.org> | 2014-01-01 11:35:56 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2014-01-01 11:35:56 +0100 |
commit | 41e55025e17b2f8e17294bc8cff7b47e8f6af1f7 (patch) | |
tree | 2ecde01a63b688076edeb17bed8ef128bbdf501b /src/core/kconfiggroup.cpp | |
parent | 6560c6031f2219bf2da515ef6daa73ec5af854aa (diff) | |
download | kconfig-41e55025e17b2f8e17294bc8cff7b47e8f6af1f7.tar.gz kconfig-41e55025e17b2f8e17294bc8cff7b47e8f6af1f7.tar.bz2 |
Generate forward headers.
Install them in the proper directory.
Let cmake find them.
Had to rename conversion_check.h to conversioncheck.h
Had to improve the scripts to support multiple libs in one framework :)
Diffstat (limited to 'src/core/kconfiggroup.cpp')
-rw-r--r-- | src/core/kconfiggroup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kconfiggroup.cpp b/src/core/kconfiggroup.cpp index c720cc66..14d27f94 100644 --- a/src/core/kconfiggroup.cpp +++ b/src/core/kconfiggroup.cpp @@ -219,7 +219,7 @@ static QString formatError(int expected, int got) QVariant KConfigGroup::convertToQVariant(const char *pKey, const QByteArray &value, const QVariant &aDefault) { // if a type handler is added here you must add a QVConversions definition - // to conversion_check.h, or ConversionCheck::to_QVariant will not allow + // to conversioncheck.h, or ConversionCheck::to_QVariant will not allow // readEntry<T> to convert to QVariant. switch (aDefault.type()) { case QVariant::Invalid: @@ -938,7 +938,7 @@ void KConfigGroup::writeEntry(const char *key, const QVariant &value, QByteArray data; // if a type handler is added here you must add a QVConversions definition - // to conversion_check.h, or ConversionCheck::to_QVariant will not allow + // to conversioncheck.h, or ConversionCheck::to_QVariant will not allow // writeEntry<T> to convert to QVariant. switch (value.type()) { case QVariant::Invalid: |