summaryrefslogtreecommitdiffstats
path: root/parts/documentation/plugins/doxygen
diff options
context:
space:
mode:
Diffstat (limited to 'parts/documentation/plugins/doxygen')
-rw-r--r--parts/documentation/plugins/doxygen/docdoxygenplugin.cpp6
-rw-r--r--parts/documentation/plugins/doxygen/docdoxygenplugin.h2
2 files changed, 4 insertions, 4 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();
diff --git a/parts/documentation/plugins/doxygen/docdoxygenplugin.h b/parts/documentation/plugins/doxygen/docdoxygenplugin.h
index d24cedb9..b3755cbe 100644
--- a/parts/documentation/plugins/doxygen/docdoxygenplugin.h
+++ b/parts/documentation/plugins/doxygen/docdoxygenplugin.h
@@ -58,7 +58,7 @@ protected:
void createBookIndex(const TQString &tagfile, IndexBox* index, DocumentationCatalogItem* item, const TQString &baseHtmlUrl = TQString());
void createIndexFromTag(TQDomDocument &dom, IndexBox* index, DocumentationCatalogItem* item,
- TQDomElement &tqparentEl, const TQString &prefix);
+ TQDomElement &parentEl, const TQString &prefix);
void autoSetupDocs(const TQString &defaultDir, const TQString &searchDir,
const TQString &name);