diff options
author | Sergio Oller <sergioller@gmail.com> | 2013-09-14 18:06:06 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-28 22:05:33 (GMT) |
commit | e835d4b28e1db3bdcdf3bfa718bc85445587ccd9 (patch) | |
tree | 074cf95073900a2514e1b67ce0f9db84a879cc95 /src/pyscanner.l | |
parent | 54f60c116bdb22b6ec5a11ced9888ebe2785eb2b (diff) | |
download | Doxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.zip Doxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.tar.gz Doxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.tar.bz2 |
Bug 707641 - `FILTER_SOURCE_FILES=YES` required to build CALL_GRAPHS
https://bugzilla.gnome.org/show_bug.cgi?id=707641
Add references if the file is filtered, as the parser
does not know whether we are insideBody or not.
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r-- | src/pyscanner.l | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index 3bcfda3..b156097 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -1709,12 +1709,13 @@ void PythonLanguageScanner::parseCode(CodeOutputInterface &codeOutIntf, bool inlineFragment, MemberDef *memberDef, bool showLineNumbers, - Definition *searchCtx + Definition *searchCtx, + bool collectXRefs ) { ::parsePythonCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName, fileDef,startLine,endLine,inlineFragment,memberDef, - showLineNumbers,searchCtx); + showLineNumbers,searchCtx,collectXRefs); } void PythonLanguageScanner::parsePrototype(const char *text) |