Fix a bunch of warnings

This commit is contained in:
Luis Ángel San Martín
2023-04-30 14:00:09 +02:00
parent 3355f2137c
commit a47b706e29
13 changed files with 24 additions and 26 deletions

View File

@ -36,7 +36,7 @@ void ComicFlow::setImagePaths(const QStringList &paths)
addSlide(img);
s = imageFiles.at(i);
s.remove(s.size() - 4, 4);
if (QFileInfo(s + ".r").exists())
if (QFileInfo::exists(s + ".r"))
markSlide(i);
}