From 176f05921d638aeb6e546126f11fcd8a13f0cb71 Mon Sep 17 00:00:00 2001
From: Boris Kolpackov <boris@codesynthesis.com>
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/pgsql/basic/driver.cxx     | 4 ++++
 qt/pgsql/date-time/driver.cxx | 3 +++
 qt/pgsql/template/driver.cxx  | 4 ++++
 3 files changed, 11 insertions(+)

(limited to 'qt/pgsql')

diff --git a/qt/pgsql/basic/driver.cxx b/qt/pgsql/basic/driver.cxx
index 1c89430..a2384f6 100644
--- a/qt/pgsql/basic/driver.cxx
+++ b/qt/pgsql/basic/driver.cxx
@@ -10,6 +10,8 @@
 #include <cassert>
 #include <iostream>
 
+#include <QtCore/QCoreApplication>
+
 #include <odb/pgsql/database.hxx>
 #include <odb/pgsql/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));
diff --git a/qt/pgsql/date-time/driver.cxx b/qt/pgsql/date-time/driver.cxx
index e81fcf3..fde15a6 100644
--- a/qt/pgsql/date-time/driver.cxx
+++ b/qt/pgsql/date-time/driver.cxx
@@ -11,6 +11,7 @@
 #include <iostream>
 
 #include <QtCore/QDateTime>
+#include <QtCore/QCoreApplication>
 
 #include <odb/pgsql/database.hxx>
 #include <odb/pgsql/transaction.hxx>
@@ -29,6 +30,8 @@ test_out_of_range_value (object&, database&);
 int
 main (int argc, char* argv[])
 {
+  QCoreApplication app (argc, argv);
+
   try
   {
     auto_ptr<database> db (create_database (argc, argv));
diff --git a/qt/pgsql/template/driver.cxx b/qt/pgsql/template/driver.cxx
index a478c35..aae2509 100644
--- a/qt/pgsql/template/driver.cxx
+++ b/qt/pgsql/template/driver.cxx
@@ -10,6 +10,8 @@
 #include <cassert>
 #include <iostream>
 
+#include <QtCore/QCoreApplication>
+
 #include <odb/pgsql/database.hxx>
 #include <odb/pgsql/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));
-- 
cgit v1.1