diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-22 20:13:01 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-22 20:13:01 (GMT) |
commit | 7cdb9679aa5e9baf87772f2c7799ff7b5fe01207 (patch) | |
tree | 5da2b20b68f07e1ce10d01b7102a959409be641d /src/groupdef.cpp | |
parent | 51502afe30860a1b56b0bcb9ede3a6d9b62fdda2 (diff) | |
download | Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.zip Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.tar.gz Doxygen-7cdb9679aa5e9baf87772f2c7799ff7b5fe01207.tar.bz2 |
Release-1.3.4
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r-- | src/groupdef.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp index 28e21db..999f032 100644 --- a/src/groupdef.cpp +++ b/src/groupdef.cpp @@ -31,6 +31,7 @@ #include "doxygen.h" #include "pagedef.h" #include "docparser.h" +#include "searchindex.h" GroupDef::GroupDef(const char *df,int dl,const char *na,const char *t, const char *refFileName) : Definition(df,dl,na) @@ -413,6 +414,12 @@ void GroupDef::writeDocumentation(OutputList &ol) addGroupListToTitle(ol,this); endTitle(ol,getOutputFileBase(),title); + if (Config_getBool("SEARCHENGINE")) + { + Doxygen::searchIndex->setCurrentDoc(title,getOutputFileBase()); + Doxygen::searchIndex->addWord(localName().lower()); + } + if (Config_getBool("DETAILS_AT_TOP")) { writeDetailedDocumentation(ol); |