diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-27 12:34:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-27 12:34:56 +0200 |
commit | 292f71768c16e14369c7aea4ef0590b0a741c3bc (patch) | |
tree | 700e20c64a354d16c4c2c2c1c6251d0cd3f64725 /qt | |
parent | b4d04b14d95ff2fb12003ea50dbd72f8f6a812ae (diff) |
Use QtCore prefix when including Qt headers1.4.0
This appears to be more portable. For example, on Mac OS X with
-framework QtCore option include <QString> does not work while
including <QtCore/QString> does.
Diffstat (limited to 'qt')
-rw-r--r-- | qt/employee.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qt/employee.hxx b/qt/employee.hxx index 3117596..58f43cc 100644 --- a/qt/employee.hxx +++ b/qt/employee.hxx @@ -5,12 +5,12 @@ #ifndef EMPLOYEE_HXX #define EMPLOYEE_HXX -#include <QString> -#include <QByteArray> -#include <QDateTime> -#include <QSharedPointer> -#include <QList> -#include <QSet> +#include <QtCore/QString> +#include <QtCore/QByteArray> +#include <QtCore/QDateTime> +#include <QtCore/QSharedPointer> +#include <QtCore/QList> +#include <QtCore/QSet> #include <odb/core.hxx> |