diff options
Diffstat (limited to 'parts/documentation/plugins/doxygen/docdoxygenplugin.cpp')
| -rw-r--r-- | parts/documentation/plugins/doxygen/docdoxygenplugin.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/parts/documentation/plugins/doxygen/docdoxygenplugin.cpp b/parts/documentation/plugins/doxygen/docdoxygenplugin.cpp index f50ceb3d..999eaf4a 100644 --- a/parts/documentation/plugins/doxygen/docdoxygenplugin.cpp +++ b/parts/documentation/plugins/doxygen/docdoxygenplugin.cpp @@ -434,9 +434,9 @@ void DocDoxygenPlugin::createBookIndex(const TQString &tagfile, IndexBox* index,  }  void DocDoxygenPlugin::createIndexFromTag(TQDomDocument &dom, IndexBox *index, -    DocumentationCatalogItem *item, TQDomElement &tqparentEl, const TQString &prefix) +    DocumentationCatalogItem *item, TQDomElement &parentEl, const TQString &prefix)  { -    TQDomElement docEl = tqparentEl; +    TQDomElement docEl = parentEl;      TQDomElement childEl = docEl.firstChild().toElement();      while (!childEl.isNull()) @@ -460,7 +460,7 @@ void DocDoxygenPlugin::createIndexFromTag(TQDomDocument &dom, IndexBox *index,              || (childEl.attribute("kind") == "slot")              || (childEl.attribute("kind") == "signal") ))          { -            TQString classname = tqparentEl.namedItem("name").firstChild().toText().data(); +            TQString classname = parentEl.namedItem("name").firstChild().toText().data();              TQString membername = childEl.namedItem("name").firstChild().toText().data();              TQString anchor = childEl.namedItem("anchor").firstChild().toText().data();              TQString arglist = childEl.namedItem("arglist").firstChild().toText().data(); | 
