migrate to Qt6

This commit is contained in:
codestation
2025-05-31 15:09:15 -05:00
parent 65f0eab8ca
commit 364dd34ced
24 changed files with 69 additions and 220 deletions

View File

@@ -52,7 +52,7 @@ const file_type video_list[] = {
Database::Database(QObject *obj_parent) :
QObject(obj_parent),
mutex(QMutex::Recursive)
mutex()
{
}
@@ -63,7 +63,7 @@ void Database::process()
cancel_operation = false;
int count = create();
cancel_operation = false;
QTextStream(stdout) << "Total entries added to the database: " << count << endl;
QTextStream(stdout) << "Total entries added to the database: " << count << Qt::endl;
if(count < 0) {
clear();
}