mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
Fix a bunch of warnings
This commit is contained in:
@ -154,7 +154,7 @@ void LibraryCreator::run()
|
||||
_database.close();
|
||||
}
|
||||
QSqlDatabase::removeDatabase(_databaseConnection);
|
||||
emit(created());
|
||||
emit created();
|
||||
QLOG_INFO() << "Create library END";
|
||||
} else {
|
||||
QLOG_INFO() << "Starting to update folder" << _sourceFolder << "in library ( " << _source << "," << _target << ")";
|
||||
@ -308,7 +308,7 @@ void LibraryCreator::insertComic(const QString &relativePath, const QFileInfo &f
|
||||
numPages = ie.getNumPages();
|
||||
originalCoverSize = ie.getOriginalCoverSize();
|
||||
if (numPages > 0) {
|
||||
emit(comicAdded(relativePath, _target + "/covers/" + hash + ".jpg"));
|
||||
emit comicAdded(relativePath, _target + "/covers/" + hash + ".jpg");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user