From fec80946ad8a21d81aab23896a816122ade245d3 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 8 Jan 2019 19:55:03 +0100 Subject: Shortened EXTRACT_PRIVATE_VIRTUAL to EXTRACT_PRIV_VIRTUAL to deal with max length limitation --- src/classdef.cpp | 2 +- src/config.xml | 4 +- src/memberdef.cpp | 16 +++-- testing/080/class_interface.xml | 110 ++++++++++++++++++++++++++++++++ testing/080_extract_private_virtual.cpp | 35 ++++++++++ testing/081/class_interface.xml | 110 -------------------------------- testing/081_extract_private_virtual.cpp | 35 ---------- 7 files changed, 157 insertions(+), 155 deletions(-) create mode 100644 testing/080/class_interface.xml create mode 100644 testing/080_extract_private_virtual.cpp delete mode 100644 testing/081/class_interface.xml delete mode 100644 testing/081_extract_private_virtual.cpp diff --git a/src/classdef.cpp b/src/classdef.cpp index f275d1d..a48df76 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -620,7 +620,7 @@ void ClassDef::internalInsertMember(MemberDef *md, { addMemberToList(MemberListType_relatedMembers,md,FALSE); } - else if (md->isFunction() && md->protection()==Private && md->virtualness()!=Normal && Config_getBool(EXTRACT_PRIVATE_VIRTUAL)) + else if (md->isFunction() && md->protection()==Private && md->virtualness()!=Normal && Config_getBool(EXTRACT_PRIV_VIRTUAL)) { addMemberToList(MemberListType_functionMembers,md,FALSE); } diff --git a/src/config.xml b/src/config.xml index d47b0a4..a62040b 100644 --- a/src/config.xml +++ b/src/config.xml @@ -838,10 +838,10 @@ Go to the next section or return to the ]]> -