diff options
Diffstat (limited to 'src/vhdlcode.l')
-rw-r--r-- | src/vhdlcode.l | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l index 8b442ef..a7f0d7f 100644 --- a/src/vhdlcode.l +++ b/src/vhdlcode.l @@ -114,11 +114,14 @@ static void startFontClass(const char *s); static void setCurrentDoc(const QCString &name,const QCString &base,const QCString &anchor="") { - static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); - if (searchEngineEnabled) - { - Doxygen::searchIndex->setCurrentDoc(name,base,anchor); - } + (void)name; + (void)base; + (void)anchor; + //static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); + //if (searchEngineEnabled) + //{ + // Doxygen::searchIndex->setCurrentDoc(name,base,anchor); + //} } static bool checkString(QCString &name) @@ -160,11 +163,12 @@ static bool checkString(QCString &name) static void addToSearchIndex(const char *text) { - static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); - if (searchEngineEnabled) - { - Doxygen::searchIndex->addWord(text,FALSE); - } + (void)text; + //static bool searchEngineEnabled=Config_getBool("SEARCHENGINE"); + //if (searchEngineEnabled) + //{ + // Doxygen::searchIndex->addWord(text,FALSE); + //} } |