summaryrefslogtreecommitdiffstats
path: root/src/pyscanner.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r--src/pyscanner.l6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l
index 4c93f26..18d0872 100644
--- a/src/pyscanner.l
+++ b/src/pyscanner.l
@@ -1631,11 +1631,13 @@ void PythonLanguageScanner::parseCode(CodeOutputInterface &codeOutIntf,
int startLine,
int endLine,
bool inlineFragment,
- MemberDef *memberDef
+ MemberDef *memberDef,
+ bool showLineNumbers
)
{
::parsePythonCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName,
- fileDef,startLine,endLine,inlineFragment,memberDef);
+ fileDef,startLine,endLine,inlineFragment,memberDef,
+ showLineNumbers);
}
void PythonLanguageScanner::parsePrototype(const char *text)