From 5b5bda14354f11d69ade20904bb89440fe674039 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sun, 23 Feb 2020 22:21:03 -0500 Subject: [PATCH] Fix DialogXML crash when parsing --- src/dialogxml/widgets/stack.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dialogxml/widgets/stack.cpp b/src/dialogxml/widgets/stack.cpp index 15a91879..2396503d 100644 --- a/src/dialogxml/widgets/stack.cpp +++ b/src/dialogxml/widgets/stack.cpp @@ -200,6 +200,7 @@ bool cStack::parseContent(ticpp::Node& content, int n, std::string tagName, std: } void cStack::validatePostParse(ticpp::Element& who, std::string fname, const std::set& attrs, const std::multiset& nodes) { - validatePostParse(who, fname, attrs, nodes); + // Don't defer to the superclass, since this is an abstract widget with no position + //cControl::validatePostParse(who, fname, attrs, nodes); }