diff options
author | Friedrich W. H. Kossebau <kossebau@kde.org> | 2022-02-09 23:56:46 +0100 |
---|---|---|
committer | Friedrich W. H. Kossebau <kossebau@kde.org> | 2022-02-09 23:56:46 +0100 |
commit | 9a35a3685d716870b8fd91fc35e0f443b1730ad4 (patch) | |
tree | 758aedfbe89f0c34479455cc402a26737f3a2550 /src/gui | |
parent | 4ab9e42b1041055f894f74547ecf18e378582543 (diff) | |
download | kconfig-9a35a3685d716870b8fd91fc35e0f443b1730ad4.tar.gz kconfig-9a35a3685d716870b8fd91fc35e0f443b1730ad4.tar.bz2 |
API dox: brush over KCoreConfigSkeleton & KConfigSkeleton docs
NO_CHANGELOG
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kconfigskeleton.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/kconfigskeleton.h b/src/gui/kconfigskeleton.h index 3f0aec87..fbf59bfe 100644 --- a/src/gui/kconfigskeleton.h +++ b/src/gui/kconfigskeleton.h @@ -23,7 +23,6 @@ * @author Cornelius Schumacher * * This class extends KCoreConfigSkeleton by support for GUI types. - * */ class KCONFIGGUI_EXPORT KConfigSkeleton : public KCoreConfigSkeleton { @@ -97,7 +96,7 @@ public: * calls and read by save() calls. * @param defaultValue Default value, which is used when the config file * does not yet contain the key of this item. - * @param key Key used in config file. If key is null, name is used as key. + * @param key Key used in config file. If @p key is a null string, @p name is used as key. * @return The created item */ ItemColor *addItemColor(const QString &name, QColor &reference, const QColor &defaultValue = QColor(128, 128, 128), const QString &key = QString()); @@ -110,7 +109,7 @@ public: * calls and read by save() calls. * @param defaultValue Default value, which is used when the config file * does not yet contain the key of this item. - * @param key Key used in config file. If key is null, name is used as key. + * @param key Key used in config file. If @p key is a null string, @p name is used as key. * @return The created item */ ItemFont *addItemFont(const QString &name, QFont &reference, const QFont &defaultValue = QFont(), const QString &key = QString()); |