summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-12-30 13:28:15 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-12-30 13:28:15 (GMT)
commitdf4e1edf1f6abb55a811e7c4a34764f27b50e502 (patch)
treee73e0b41d708a8ea6260e541347b464cb2e5aeaa /src/index.cpp
parentf4fab829c8e9b4bf54c60fd85805eb008c3838ab (diff)
downloadDoxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.zip
Doxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.tar.gz
Doxygen-df4e1edf1f6abb55a811e7c4a34764f27b50e502.tar.bz2
Release-1.6.2
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 5f3d341..9becc0d 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -2892,7 +2892,7 @@ void writeExampleIndex(OutputList &ol)
if (!pd->title().isEmpty())
{
ol.writeObjectLink(0,n,0,pd->title());
- Doxygen::indexList.addContentsItem(FALSE,pd->title(),pd->getReference(),n,0);
+ Doxygen::indexList.addContentsItem(FALSE,filterTitle(pd->title()),pd->getReference(),n,0);
}
else
{
@@ -3005,7 +3005,7 @@ void writePageIndex(OutputList &ol)
ol.endTypewriter();
}
ol.writeString("\n");
- Doxygen::indexList.addContentsItem(hasSubPages,pageTitle,pd->getReference(),pd->getOutputFileBase(),0);
+ Doxygen::indexList.addContentsItem(hasSubPages,filterTitle(pageTitle),pd->getReference(),pd->getOutputFileBase(),0);
writeSubPages(pd);
ol.endIndexListItem();
}
@@ -3548,7 +3548,7 @@ void writeIndex(OutputList &ol)
}
else
{
- title = substitute(Doxygen::mainPage->title(),"%","");
+ title = filterTitle(Doxygen::mainPage->title());
}
QCString indexName=Config_getBool("GENERATE_TREEVIEW")?"main":"index";
@@ -3576,7 +3576,9 @@ void writeIndex(OutputList &ol)
{
if (Doxygen::mainPage->title().lower()!="notitle")
{
- ol.docify(Doxygen::mainPage->title());
+ ol.parseDoc(Doxygen::mainPage->docFile(),Doxygen::mainPage->docLine(),
+ Doxygen::mainPage,0,Doxygen::mainPage->title(),
+ TRUE,FALSE,0,TRUE,FALSE);
}
}
else