Skip to content

Commit

Permalink
Merge pull request #199 from BSDKaffee/qt-6.6-fix.
Browse files Browse the repository at this point in the history
Fix build with Qt 6.6. Replaced QSqlDatabase with QSqlQuery.
  • Loading branch information
textbrowser committed Oct 7, 2023
2 parents 21ef9b9 + 8231ef3 commit 95c0d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/dooble_downloads.cc
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void dooble_downloads::create_tables(QSqlDatabase &db)
{
db.open();

QSqlDatabase query(db);
QSqlQuery query(db);

query.exec("CREATE TABLE IF NOT EXISTS dooble_downloads ("
"download_path TEXT NOT NULL, "
Expand Down

0 comments on commit 95c0d32

Please sign in to comment.