added a second user-collection

This commit is contained in:
plc-user
2023-12-09 12:02:04 +01:00
parent 457aeb6883
commit f519499a66
30 changed files with 589 additions and 335 deletions

View File

@@ -687,6 +687,8 @@ QString QET::qetCollectionToString(const QET::QetCollection &c)
{
case Common :
return "common";
case Company :
return "company";
case Custom :
return "custom";
case Embedded :
@@ -706,6 +708,8 @@ QET::QetCollection QET::qetCollectionFromString(const QString &str)
{
if (str == "common")
return QetCollection::Common;
else if (str == "company")
return QetCollection::Company;
else if (str == "custom")
return QetCollection::Custom;
else if (str == "embedded")