Warn if restoring charger status fails at exit
This commit is contained in:
parent
0cb9551c3a
commit
fa5b0cd9e7
2 changed files with 6 additions and 4 deletions
|
@ -218,7 +218,9 @@ void Battery::shutdown() {
|
|||
notifyTimer->stop();
|
||||
qDebug() << "Notification stopped";
|
||||
}
|
||||
setChargingEnabled(true);
|
||||
chargingEnabledFile->setPermissions(originalPerms);
|
||||
qDebug() << "Charger control file permissions restored.";
|
||||
if(!setChargingEnabled(true)) {
|
||||
qWarning() << "ERROR! Could not restore charger status! Your device" << endl
|
||||
<< "may not start until reboot! If that doesn't help," << endl
|
||||
<< "uninstall Battery Buddy and reboot your device.";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ public:
|
|||
QString getState();
|
||||
|
||||
bool getChargingEnabled();
|
||||
void setChargingEnabled(bool);
|
||||
bool setChargingEnabled(bool);
|
||||
|
||||
public slots:
|
||||
void updateData();
|
||||
|
|
Loading…
Reference in a new issue