comparison Exception/SQLException.cpp @ 40:f711ddb56ae7

Sort up includes.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 13:32:33 +0200
parents bf3dce7fedcb
children c9447697609f
comparison
equal deleted inserted replaced
39:f23fa42238dc 40:f711ddb56ae7
1 #include "SQLException.hpp" 1 #include "SQLException.hpp"
2 2
3 #include <QtSql/QSqlError>
3 #include <QtSql/QSqlQuery> 4 #include <QtSql/QSqlQuery>
4 #include <QtSql/QSqlError>
5 5
6 SQLException::SQLException(const QString& errorMsg) : Exception(errorMsg) 6 SQLException::SQLException(const QString& errorMsg) : Exception(errorMsg)
7 { 7 {
8 } 8 }
9 9