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/sqlite/basic/driver.cxx | 4 ++++ qt/sqlite/date-time/driver.cxx | 3 +++ qt/sqlite/template/driver.cxx | 4 ++++ 3 files changed, 11 insertions(+) (limited to 'qt/sqlite') diff --git a/qt/sqlite/basic/driver.cxx b/qt/sqlite/basic/driver.cxx index f24053a..c925f65 100644 --- a/qt/sqlite/basic/driver.cxx +++ b/qt/sqlite/basic/driver.cxx @@ -10,6 +10,8 @@ #include #include +#include + #include #include @@ -24,6 +26,8 @@ using namespace odb::core; int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr db (create_database (argc, argv)); diff --git a/qt/sqlite/date-time/driver.cxx b/qt/sqlite/date-time/driver.cxx index a095aa5..0ee5831 100644 --- a/qt/sqlite/date-time/driver.cxx +++ b/qt/sqlite/date-time/driver.cxx @@ -11,6 +11,7 @@ #include #include +#include #include #include @@ -29,6 +30,8 @@ test_out_of_range_value (object&, database&); int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr db (create_database (argc, argv)); diff --git a/qt/sqlite/template/driver.cxx b/qt/sqlite/template/driver.cxx index cce886a..c02cf06 100644 --- a/qt/sqlite/template/driver.cxx +++ b/qt/sqlite/template/driver.cxx @@ -10,6 +10,8 @@ #include #include +#include + #include #include @@ -24,6 +26,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