Skip to content
Snippets Groups Projects
Commit 97e6a6df authored by Fabian Reister's avatar Fabian Reister
Browse files

minor fixes; especially for displaying package name

parent c3e3c0c0
No related branches found
No related tags found
1 merge request!86StatechartEditor: CMake namespaced packages
Pipeline #11995 failed
......@@ -67,11 +67,8 @@ GuiStatechartGroupXmlReader::ReadXml(QString groupDefinitionFile, StateTreeNodeP
: StatechartGroup::eReadOnly;
if (boost::regex_search(groupPathStr.begin(), groupPathStr.end(), match, projectNameRegex))
{
displayName += QString(" [%1]").arg(
QString::fromStdString(std::string(match[1].first, match[1].second)));
}
displayName += QString(" [%1]").arg(packageName);
QList<QString> proxies;
......@@ -91,7 +88,6 @@ GuiStatechartGroupXmlReader::ReadXml(QString groupDefinitionFile, StateTreeNodeP
bool generateContext =
xmlGroupNode.attribute_as_optional_bool("generateContext", "true", "false", false);
// FIXME package is incorrect if namespaced.
StatechartGroupPtr group(new StatechartGroup(groupDefinitionFile,
QString::fromUtf8(groupPath.parent_path().c_str()),
name,
......
......@@ -151,4 +151,3 @@ StatechartGroup::WriteAccess StatechartGroup::getWriteAccess()
{
return writable;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment