fixed compile error for older QT versions
This commit is contained in:
parent
367ecc839b
commit
a8bd0ab7bf
|
@ -61,8 +61,11 @@ int main(int argc, char** argv)
|
|||
listServices();
|
||||
}
|
||||
else if (args.contains("-i"))
|
||||
{
|
||||
args = {"-d", "/etc/" + QString(APP_BIN)};
|
||||
{
|
||||
args.clear();
|
||||
args.append("-d");
|
||||
args.append("/etc/");
|
||||
args.append(APP_BIN);
|
||||
|
||||
rmServices(); ret = loadServices(args);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user