diff options
author | David Boddie <david.boddie@nokia.com> | 2011-05-02 13:39:41 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2011-05-02 13:39:41 (GMT) |
commit | 6d5963486c8c2a154caf3a2a391bce19cbbeb881 (patch) | |
tree | 57a132edba61391ef795f3f8ccaa5ea7425cacde /tools/qdoc3/config.cpp | |
parent | 63e89c45fcc07759c928231ac27cc25928116d45 (diff) | |
parent | 781967478a0ddc5b69663a49bb081d752f85dc99 (diff) | |
download | Qt-6d5963486c8c2a154caf3a2a391bce19cbbeb881.zip Qt-6d5963486c8c2a154caf3a2a391bce19cbbeb881.tar.gz Qt-6d5963486c8c2a154caf3a2a391bce19cbbeb881.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-doc-review into 4.7
Diffstat (limited to 'tools/qdoc3/config.cpp')
-rw-r--r-- | tools/qdoc3/config.cpp | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/tools/qdoc3/config.cpp b/tools/qdoc3/config.cpp index 838f6ac..eaec327 100644 --- a/tools/qdoc3/config.cpp +++ b/tools/qdoc3/config.cpp @@ -48,7 +48,7 @@ #include <QFile> #include <QTemporaryFile> #include <QTextStream> - +#include <qdebug.h> #include "config.h" #include <stdlib.h> @@ -175,6 +175,7 @@ Config::Config(const QString& programName) } /*! + The destructor has nothing special to do. */ Config::~Config() { @@ -202,6 +203,30 @@ void Config::load(const QString& fileName) } /*! + Writes the qdoc configuration data to the named file. + The previous contents of the file are overwritten. + */ +void Config::unload(const QString& fileName) +{ + + QStringMultiMap::ConstIterator v = stringValueMap.begin(); + while (v != stringValueMap.end()) { + qDebug() << v.key() << " = " << v.value(); +#if 0 + if (v.key().startsWith(varDot)) { + QString subVar = v.key().mid(varDot.length()); + int dot = subVar.indexOf(QLatin1Char('.')); + if (dot != -1) + subVar.truncate(dot); + t.insert(subVar,v.value()); + } +#endif + ++v; + } + qDebug() << "fileName:" << fileName; +} + +/*! Joins all the strings in \a values into a single string with the individual \a values separated by ' '. Then it inserts the result into the string list map with \a var as the key. |