Fix indentation
Diff, what are you doing?
This commit is contained in:
parent
5a3af9894d
commit
59950ddb7a
1 changed files with 32 additions and 32 deletions
|
@ -39,46 +39,46 @@ Battery::Battery(Settings* newSettings, QObject* parent) : QObject(parent)
|
||||||
qInfo() << "Charger control feature disabled";
|
qInfo() << "Charger control feature disabled";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
chargingEnabledFile = new QFile(this);
|
chargingEnabledFile = new QFile(this);
|
||||||
|
|
||||||
// e.g. for Sony Xperia XA2
|
// e.g. for Sony Xperia XA2
|
||||||
chargingEnabledFile->setFileName("/sys/class/power_supply/battery/input_suspend");
|
chargingEnabledFile->setFileName("/sys/class/power_supply/battery/input_suspend");
|
||||||
if(chargingEnabledFile->exists()) {
|
if(chargingEnabledFile->exists()) {
|
||||||
enableChargingValue = 0;
|
enableChargingValue = 0;
|
||||||
disableChargingValue = 1;
|
disableChargingValue = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// e.g. for Sony Xperia Z3 Compact Tablet
|
// e.g. for Sony Xperia Z3 Compact Tablet
|
||||||
chargingEnabledFile->setFileName("/sys/class/power_supply/battery/charging_enabled");
|
chargingEnabledFile->setFileName("/sys/class/power_supply/battery/charging_enabled");
|
||||||
if(chargingEnabledFile->exists()) {
|
if(chargingEnabledFile->exists()) {
|
||||||
enableChargingValue = 1;
|
enableChargingValue = 1;
|
||||||
disableChargingValue = 0;
|
disableChargingValue = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// e.g. for Jolla Phone
|
// e.g. for Jolla Phone
|
||||||
chargingEnabledFile->setFileName("/sys/class/power_supply/usb/charger_disable");
|
chargingEnabledFile->setFileName("/sys/class/power_supply/usb/charger_disable");
|
||||||
if(chargingEnabledFile->exists()) {
|
if(chargingEnabledFile->exists()) {
|
||||||
enableChargingValue = 0;
|
enableChargingValue = 0;
|
||||||
disableChargingValue = 1;
|
disableChargingValue = 1;
|
||||||
}
|
|
||||||
else {
|
|
||||||
delete chargingEnabledFile;
|
|
||||||
chargingEnabledFile = Q_NULLPTR;
|
|
||||||
qWarning() << "Charger control file not found!";
|
|
||||||
qWarning() << "Please contact the developer with your device model!";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(chargingEnabledFile) {
|
|
||||||
if(chargingEnabledFile->open(QIODevice::WriteOnly)) {
|
|
||||||
qInfo() << "Controlling charging via" << chargingEnabledFile->fileName();
|
|
||||||
chargingEnabledFile->close();
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
delete chargingEnabledFile;
|
delete chargingEnabledFile;
|
||||||
chargingEnabledFile = Q_NULLPTR;
|
chargingEnabledFile = Q_NULLPTR;
|
||||||
qWarning() << "Charger control file" << chargingEnabledFile->fileName() << "is not writable";
|
qWarning() << "Charger control file not found!";
|
||||||
qWarning() << "Charger control feature disabled";
|
qWarning() << "Please contact the developer with your device model!";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(chargingEnabledFile) {
|
||||||
|
if(chargingEnabledFile->open(QIODevice::WriteOnly)) {
|
||||||
|
qInfo() << "Controlling charging via" << chargingEnabledFile->fileName();
|
||||||
|
chargingEnabledFile->close();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
delete chargingEnabledFile;
|
||||||
|
chargingEnabledFile = Q_NULLPTR;
|
||||||
|
qWarning() << "Charger control file" << chargingEnabledFile->fileName() << "is not writable";
|
||||||
|
qWarning() << "Charger control feature disabled";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue