Simplify how parseElement splits element string (#9726)

This commit is contained in:
Pierre-Yves Rollo 2020-04-25 07:48:04 +02:00 committed by GitHub
parent cee3c5e73d
commit 6cc5c7cbb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 16 deletions

View File

@ -2668,24 +2668,12 @@ void GUIFormSpecMenu::parseElement(parserData* data, const std::string &element)
if (parseVersionDirect(element))
return;
std::vector<std::string> parts = split(element,'[');
// ugly workaround to keep compatibility
if (parts.size() > 2) {
if (trim(parts[0]) == "image") {
for (unsigned int i=2;i< parts.size(); i++) {
parts[1] += "[" + parts[i];
}
}
else { return; }
}
if (parts.size() < 2) {
size_t pos = element.find('[');
if (pos == std::string::npos)
return;
}
std::string type = trim(parts[0]);
std::string description = trim(parts[1]);
std::string type = trim(element.substr(0, pos));
std::string description = element.substr(pos+1);
if (type == "container") {
parseContainer(data, description);