Change ElementData enum

Change enum value 'ground' from enum 'function' to enum 'type'
This commit is contained in:
joshua
2021-05-21 19:15:26 +02:00
parent 93b164d077
commit fdbfca9a8c
3 changed files with 40 additions and 40 deletions

View File

@@ -68,17 +68,17 @@ class ElementData : public PropertiesInterface
enum TerminalType {
TTGeneric,
Fuse,
Sectional,
Diode
TTFuse,
TTSectional,
TTDiode,
TTGround
};
Q_ENUM(TerminalType)
enum TerminalFunction {
TFGeneric,
Phase,
Neutral,
PE
TFPhase,
TFNeutral,
};
Q_ENUM(TerminalFunction)