Commit b07832a1 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Fixed compilation issues in doxyapp

parent d3b66fcb
......@@ -27,6 +27,7 @@
/addon/doxmlparser/src/Makefile
/addon/doxmlparser/test/Makefile
/addon/doxyapp/Makefile
/addon/doxyapp/Makefile.doxyapp
/addon/doxywizard/Makefile
/addon/doxywizard/Makefile.doxywizard
/addon/doxywizard/config_lex.cpp
......
......@@ -49,6 +49,9 @@ class XRefDummyCodeGenerator : public CodeOutputInterface
void codify(const char *) {}
void writeCodeLink(const char *,const char *,const char *,const char *,const char *) {}
void writeLineNumber(const char *,const char *,const char *,int) {}
virtual void writeTooltip(const char *,const DocLinkInfo &,
const char *,const char *,const SourceLinkInfo &,
const SourceLinkInfo &) {}
void startCodeLine(bool) {}
void endCodeLine() {}
void startCodeAnchor(const char *) {}
......@@ -107,6 +110,9 @@ static void findXRefSymbols(FileDef *fd)
// get the interface to a parser that matches the file extension
ParserInterface *pIntf=Doxygen::parserManager->getParser(fd->getDefFileExtension());
// get the programming language from the file name
SrcLangExt lang = getLanguageFromFileName(fd->name());
// reset the parsers state
pIntf->resetCodeParserState();
......@@ -117,6 +123,7 @@ static void findXRefSymbols(FileDef *fd)
pIntf->parseCode(*xrefGen,
0,
fileToString(fd->absFilePath()),
lang,
FALSE,
0,
fd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment