From 176f05921d638aeb6e546126f11fcd8a13f0cb71 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 1 Dec 2011 18:02:51 +0200 Subject: 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). --- qt/oracle/basic/driver.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qt/oracle/basic') diff --git a/qt/oracle/basic/driver.cxx b/qt/oracle/basic/driver.cxx index 908f2b4..9b37d67 100644 --- a/qt/oracle/basic/driver.cxx +++ b/qt/oracle/basic/driver.cxx @@ -11,6 +11,8 @@ #include #include +#include + #include #include @@ -25,6 +27,8 @@ using namespace odb::core; int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr db (create_database (argc, argv)); -- cgit v1.1