diff options
author | albert-github <albert.tests@gmail.com> | 2019-01-18 09:59:56 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-01-18 09:59:56 (GMT) |
commit | e596bf3f21402ed555b305af7649546991bf8c3d (patch) | |
tree | f5d85b61c11903f2e44429087861a58c3d6baf1e /src/vhdlcode.l | |
parent | 6a1b3708a6bc240cea79b3191b0dafacb014fdb6 (diff) | |
download | Doxygen-e596bf3f21402ed555b305af7649546991bf8c3d.zip Doxygen-e596bf3f21402ed555b305af7649546991bf8c3d.tar.gz Doxygen-e596bf3f21402ed555b305af7649546991bf8c3d.tar.bz2 |
Double id for tooltips in XHTML Possible.
The tooltips (XHTML) should not be displayed per code fragment but for the entire (output) file as otherwise tooltips might be added multiple times resulting in double IDs.
Diffstat (limited to 'src/vhdlcode.l')
-rw-r--r-- | src/vhdlcode.l | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l index aa15183..821cd33 100644 --- a/src/vhdlcode.l +++ b/src/vhdlcode.l @@ -1549,7 +1549,6 @@ void parseVhdlCode(CodeOutputInterface &od,const char *className,const QCString //printf("***parseCode() exBlock=%d exName=%s fd=%p\n",exBlock,exName,fd); if (s.isEmpty()) return; printlex(yy_flex_debug, TRUE, __FILE__, fd ? fd->fileName().data(): NULL); - TooltipManager::instance()->clearTooltips(); if (memberDef) { ClassDef *dd=memberDef->getClassDef(); @@ -1623,10 +1622,6 @@ void parseVhdlCode(CodeOutputInterface &od,const char *className,const QCString { endCodeLine(); } - if (fd) - { - TooltipManager::instance()->writeTooltips(*g_code); - } if (cleanupSourceDef) { // delete the temporary file definition used for this example |