diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-12-01 18:02:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-12-01 18:02:51 +0200 |
commit | 176f05921d638aeb6e546126f11fcd8a13f0cb71 (patch) | |
tree | e16f3d34f0983c844a9d3f2a6874ca7b340e297e /qt/common/template/driver.cxx | |
parent | 178d0a28bd7d69799828d1640a02731cb42f1b4d (diff) |
Instantiate QCoreApplication in Qt tests/examples
It performs Qt initialization/finalization and without it bad things
will happen (like deleting TLS keys that don't belong to Qt).
Diffstat (limited to 'qt/common/template/driver.cxx')
-rw-r--r-- | qt/common/template/driver.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt/common/template/driver.cxx b/qt/common/template/driver.cxx index 7822aab..ca37c05 100644 --- a/qt/common/template/driver.cxx +++ b/qt/common/template/driver.cxx @@ -10,6 +10,8 @@ #include <cassert> #include <iostream> +#include <QtCore/QCoreApplication> + #include <odb/database.hxx> #include <odb/transaction.hxx> @@ -24,6 +26,8 @@ using namespace odb::core; int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr<database> db (create_database (argc, argv)); |