summaryrefslogtreecommitdiffstats
path: root/src/vhdlcode.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-06-22 20:14:03 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-06-22 20:14:03 (GMT)
commit7c0a46b50fad0925e47b78326f8c2e92e3829fb4 (patch)
tree2f918f7da3205101b2a8a300ee9afefe247b3f24 /src/vhdlcode.l
parent7a3de4c3c8aac25c38b6e93bb0927de40cd1c650 (diff)
downloadDoxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.zip
Doxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.tar.gz
Doxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.tar.bz2
Release-1.5.9-20090622
Diffstat (limited to 'src/vhdlcode.l')
-rw-r--r--src/vhdlcode.l24
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);
+ //}
}