From 5368c8151df632ba0ebd863cbc7ff105dc4027bf Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Thu, 1 Mar 2018 23:17:23 +0100 Subject: Change config structure --- src/Lang/Cpp/CppParser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Lang/Cpp/CppParser.ts') diff --git a/src/Lang/Cpp/CppParser.ts b/src/Lang/Cpp/CppParser.ts index 8dfa005..00d14c3 100644 --- a/src/Lang/Cpp/CppParser.ts +++ b/src/Lang/Cpp/CppParser.ts @@ -286,7 +286,7 @@ export default class CppParser implements ICodeParser { logicalLine = nextLineTxt; // Get method end line - let linesToGet: number = this.cfg.linesToGet; + let linesToGet: number = this.cfg.Generic.linesToGet; while (linesToGet-- > 0) { // Check for end of expression. nextLine = new Position(nextLine.line + 1, nextLine.character); nextLineTxt = this.activeEditor.document.lineAt(nextLine.line).text.trim(); -- cgit v1.2.3