Change mtime and ctime to qint64

This commit is contained in:
Jonas Kvinge
2020-08-13 21:09:06 +02:00
parent 7aebd6ed57
commit c315e5016d
7 changed files with 19 additions and 19 deletions

View File

@@ -222,7 +222,7 @@ SubdirectoryList CollectionBackend::SubdirsInDirectory(int id, QSqlDatabase &db)
Subdirectory subdir;
subdir.directory_id = id;
subdir.path = q.value(0).toString();
subdir.mtime = q.value(1).toUInt();
subdir.mtime = q.value(1).toLongLong();
subdirs << subdir;
}