diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-04-08 14:16:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-04-08 14:16:03 (GMT) |
commit | 17ee30b327bf4f07f2411a50a46f5467456beacf (patch) | |
tree | ffd092e761289b417363c0562ceb9b93b88f19a4 /src/docsets.cpp | |
parent | 0039b4f79ad7e628dcab61e1d82f26fb8fa11cfe (diff) | |
download | Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.zip Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.tar.gz Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.tar.bz2 |
Release-1.8.0-20120408
Diffstat (limited to 'src/docsets.cpp')
-rw-r--r-- | src/docsets.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/docsets.cpp b/src/docsets.cpp index 6852c41..f18185d 100644 --- a/src/docsets.cpp +++ b/src/docsets.cpp @@ -13,12 +13,11 @@ * */ +#include <qfile.h> #include "docsets.h" #include "config.h" #include "message.h" #include "doxygen.h" -#include <qfile.h> - DocSets::DocSets() : m_nodes(17), m_scopes(17) { @@ -216,7 +215,8 @@ void DocSets::addContentsItem(bool isDir, const char *file, const char *anchor, bool /* separateIndex */, - bool /* addToNavIndex */) + bool /* addToNavIndex */, + Definition * /*def*/) { (void)isDir; if (file && ref==0) @@ -447,7 +447,7 @@ void DocSets::writeToken(FTextStream &t, { t << " <Token>" << endl; t << " <TokenIdentifier>" << endl; - QString name = d->name(); + QCString name = d->name(); if (name.right(2)=="-p") name=name.left(name.length()-2); t << " <Name>" << convertToXML(name) << "</Name>" << endl; if (!lang.isEmpty()) |