Commit 49a5c554 authored by Jarek Kobus's avatar Jarek Kobus
Browse files

Create QHelpCollectionHandler's query dynamically


It fixes a warning about the use of db from the wrong thread.
Before, the default m_query object was created
in QHelpCollectionHandler constructor which caused the
warning to appear. Now we create m_query object
dynamically instead.

This also fixed a leak in QHelpCollectionHandler::openCollectionFile()
where two early returns, after the database had been opened, neither
closed it nor set m_dbOpened.

Change-Id: I24484d25d9d90b1a5d6fe4a5acb61c834e2b9599
Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
Reviewed-by: default avatarEdward Welbourne <edward.welbourne@qt.io>
Showing with 203 additions and 180 deletions
This diff is collapsed.
...@@ -109,12 +109,12 @@ signals: ...@@ -109,12 +109,12 @@ signals:
private: private:
bool isDBOpened(); bool isDBOpened();
void closeDB();
bool createTables(QSqlQuery *query); bool createTables(QSqlQuery *query);
bool m_dbOpened;
QString m_collectionFile; QString m_collectionFile;
QString m_connectionName; QString m_connectionName;
mutable QSqlQuery m_query; QSqlQuery *m_query = nullptr;
}; };
QT_END_NAMESPACE QT_END_NAMESPACE
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment