summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-11-29 12:26:35 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-11-29 12:26:35 (GMT)
commita1e4f6d4f9c999b7484f5be2a43ea455bb2f002c (patch)
tree7ccdd9fe3caa5e86d5e05128bdf8c4551347aff9 /src
parent6d505c28e8f689234e8574ca2e0a2836500198eb (diff)
downloadDoxygen-a1e4f6d4f9c999b7484f5be2a43ea455bb2f002c.zip
Doxygen-a1e4f6d4f9c999b7484f5be2a43ea455bb2f002c.tar.gz
Doxygen-a1e4f6d4f9c999b7484f5be2a43ea455bb2f002c.tar.bz2
Fix compiler error by making clangparser use TooltipManager::instance()
Diffstat (limited to 'src')
-rw-r--r--src/clangparser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/clangparser.cpp b/src/clangparser.cpp
index 4a484ff..6f32576 100644
--- a/src/clangparser.cpp
+++ b/src/clangparser.cpp
@@ -134,7 +134,6 @@ class ClangTUParser::Private
CXToken *tokens = 0;
uint numTokens = 0;
StringVector filesInSameTU;
- TooltipManager tooltipManager;
// state while parsing sources
MemberDef *currentMemberDef=0;
@@ -574,7 +573,7 @@ void ClangTUParser::writeMultiLineCodeLink(CodeOutputInterface &ol,
const char *text)
{
static bool sourceTooltips = Config_getBool(SOURCE_TOOLTIPS);
- p->tooltipManager.addTooltip(ol,d);
+ TooltipManager::instance().addTooltip(ol,d);
QCString ref = d->getReference();
QCString file = d->getOutputFileBase();
QCString anchor = d->anchor();