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

Fixed compilation issues in doxyapp

parent d3b66fcb
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
/addon/doxmlparser/src/Makefile /addon/doxmlparser/src/Makefile
/addon/doxmlparser/test/Makefile /addon/doxmlparser/test/Makefile
/addon/doxyapp/Makefile /addon/doxyapp/Makefile
/addon/doxyapp/Makefile.doxyapp
/addon/doxywizard/Makefile /addon/doxywizard/Makefile
/addon/doxywizard/Makefile.doxywizard /addon/doxywizard/Makefile.doxywizard
/addon/doxywizard/config_lex.cpp /addon/doxywizard/config_lex.cpp
......
...@@ -49,6 +49,9 @@ class XRefDummyCodeGenerator : public CodeOutputInterface ...@@ -49,6 +49,9 @@ class XRefDummyCodeGenerator : public CodeOutputInterface
void codify(const char *) {} void codify(const char *) {}
void writeCodeLink(const char *,const char *,const char *,const char *,const char *) {} void writeCodeLink(const char *,const char *,const char *,const char *,const char *) {}
void writeLineNumber(const char *,const char *,const char *,int) {} 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 startCodeLine(bool) {}
void endCodeLine() {} void endCodeLine() {}
void startCodeAnchor(const char *) {} void startCodeAnchor(const char *) {}
...@@ -107,6 +110,9 @@ static void findXRefSymbols(FileDef *fd) ...@@ -107,6 +110,9 @@ static void findXRefSymbols(FileDef *fd)
// get the interface to a parser that matches the file extension // get the interface to a parser that matches the file extension
ParserInterface *pIntf=Doxygen::parserManager->getParser(fd->getDefFileExtension()); ParserInterface *pIntf=Doxygen::parserManager->getParser(fd->getDefFileExtension());
// get the programming language from the file name
SrcLangExt lang = getLanguageFromFileName(fd->name());
// reset the parsers state // reset the parsers state
pIntf->resetCodeParserState(); pIntf->resetCodeParserState();
...@@ -117,6 +123,7 @@ static void findXRefSymbols(FileDef *fd) ...@@ -117,6 +123,7 @@ static void findXRefSymbols(FileDef *fd)
pIntf->parseCode(*xrefGen, pIntf->parseCode(*xrefGen,
0, 0,
fileToString(fd->absFilePath()), fileToString(fd->absFilePath()),
lang,
FALSE, FALSE,
0, 0,
fd); 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