summaryrefslogtreecommitdiffstats
path: root/src/__TODO/UiGuiIniFileParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/__TODO/UiGuiIniFileParser.cpp')
-rw-r--r--src/__TODO/UiGuiIniFileParser.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/__TODO/UiGuiIniFileParser.cpp b/src/__TODO/UiGuiIniFileParser.cpp
index e690139..9ff892d 100644
--- a/src/__TODO/UiGuiIniFileParser.cpp
+++ b/src/__TODO/UiGuiIniFileParser.cpp
@@ -24,9 +24,9 @@
#include <tntqvariant.h>
#include <tntqtextstream.h>
-//! \defgroup grp_Settings All concerning applications settings.
+// \defgroup grp_Settings All concerning applications settings.
-/*!
+/*
\class UiGuiIniFileParser
\ingroup grp_Settings
\brief UiGuiIniFileParser is a simple ini file format parser.
@@ -40,7 +40,7 @@
rewrites a settings file sorted. Very annoying for me.
*/
-/*!
+/*
\brief Init and empty all needed lists and strings.
*/
UiGuiIniFileParser::UiGuiIniFileParser(void)
@@ -48,7 +48,7 @@ UiGuiIniFileParser::UiGuiIniFileParser(void)
init();
}
-/*!
+/*
\brief Directly loads and parses the file with name \a iniFileName.
*/
UiGuiIniFileParser::UiGuiIniFileParser(const TQString &iniFileName)
@@ -69,7 +69,7 @@ UiGuiIniFileParser::~UiGuiIniFileParser(void)
{
}
-/*!
+/*
\brief Returns the group/section names in the same order as they occurr in the ini file as TQStringList.
*/
TQStringList UiGuiIniFileParser::childGroups()
@@ -84,7 +84,7 @@ TQStringList UiGuiIniFileParser::childGroups()
return sectionsStringList;
}
-/*!
+/*
\brief Returns the value of the defined \a keyName as TQVariant.
The \a keyName is assembled by a section name, a slash and the key name itself.
@@ -97,7 +97,7 @@ TQVariant UiGuiIniFileParser::value(const TQString &keyName, const TQString &def
return _keyValueMap.value(keyName, defaultValue);
}
-/*!
+/*
\brief Parses the ini file and stores the key value pairs in the internal vectors \a keys and \a values.
*/
void UiGuiIniFileParser::parseIniFile()