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/oracle/date-time | |
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/oracle/date-time')
-rw-r--r-- | qt/oracle/date-time/driver.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qt/oracle/date-time/driver.cxx b/qt/oracle/date-time/driver.cxx index 82dd2fe..2d9b46d 100644 --- a/qt/oracle/date-time/driver.cxx +++ b/qt/oracle/date-time/driver.cxx @@ -11,6 +11,7 @@ #include <iostream> #include <QtCore/QDateTime> +#include <QtCore/QCoreApplication> #include <odb/oracle/database.hxx> #include <odb/oracle/transaction.hxx> @@ -26,6 +27,8 @@ using namespace odb::core; int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr<database> db (create_database (argc, argv)); |