Add BatteryNotCharging state
This commit is contained in:
parent
a832fb6df5
commit
45added26c
1 changed files with 2 additions and 1 deletions
|
@ -167,7 +167,8 @@ public:
|
||||||
BatteryCritical = 0,
|
BatteryCritical = 0,
|
||||||
BatteryWarning = 1,
|
BatteryWarning = 1,
|
||||||
BatteryFine = 2,
|
BatteryFine = 2,
|
||||||
BatteryCharging = 3
|
BatteryCharging = 3,
|
||||||
|
BatteryNotCharging = 4
|
||||||
};
|
};
|
||||||
Q_ENUM(ExtensionBatteryState);
|
Q_ENUM(ExtensionBatteryState);
|
||||||
|
|
||||||
|
|
Reference in a new issue