Fix use of leftover variable
This commit is contained in:
parent
8ebebbb399
commit
0a88ca6692
2 changed files with 2 additions and 6 deletions
|
@ -23,8 +23,6 @@ Battery::Battery(Settings* newSettings, Logger* newLogger, QObject* parent) : QO
|
|||
logger = newLogger;
|
||||
const QString notFound = "not found";
|
||||
|
||||
QStringList filenames;
|
||||
|
||||
// Battery charge percentage, number, e.g. 42
|
||||
const QStringList batteryFiles = {
|
||||
"/sys/class/power_supply/battery/capacity",
|
||||
|
@ -119,7 +117,7 @@ Battery::Battery(Settings* newSettings, Logger* newLogger, QObject* parent) : QO
|
|||
"/sys/class/power_supply/battery/health",
|
||||
"/sys/class/power_supply/dollar_cove_battery/health"
|
||||
};
|
||||
foreach(const QString& file, filenames) {
|
||||
foreach(const QString& file, healthFiles) {
|
||||
if(!healthFile && QFile::exists(file)) {
|
||||
healthFile = new QFile(file, this);
|
||||
break;
|
||||
|
|
|
@ -34,8 +34,6 @@ Battery::Battery(Logger* newLogger, bool loglevelSet, QCoreApplication *app, QOb
|
|||
chargeNotification = new MyNotification(this);
|
||||
healthNotification = new MyNotification(this);
|
||||
|
||||
QStringList filenames;
|
||||
|
||||
// Battery charge percentage, number, e.g. 42
|
||||
const QStringList capacityFiles = {
|
||||
"/sys/class/power_supply/battery/capacity",
|
||||
|
@ -171,7 +169,7 @@ Battery::Battery(Logger* newLogger, bool loglevelSet, QCoreApplication *app, QOb
|
|||
"/sys/class/power_supply/battery/health",
|
||||
"/sys/class/power_supply/dollar_cove_battery/health"
|
||||
};
|
||||
foreach(const QString& file, filenames) {
|
||||
foreach(const QString& file, healthFiles) {
|
||||
if(!healthFile && QFile::exists(file)) {
|
||||
healthFile = new QFile(file, this);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue