diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-04-19 17:18:27 +0200 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-04-19 17:18:27 +0200 |
commit | b4927c06a150d473e4a13054ca5ebe826f223910 (patch) | |
tree | d09c4864bb97cf3a193cf95d7210af3bda1faeee /mysqlc/source/mysqlc_connection.cxx | |
parent | aa5f361a423ffd1750407edabf45943cd52a6392 (diff) |
DEV300 masterfix: #i10000#: juggle inclusion order to make mysqlc compilable on STLPort platforms
Notes
Notes:
split repo tag: extensions_ooo/DEV300_m77
Diffstat (limited to 'mysqlc/source/mysqlc_connection.cxx')
-rw-r--r-- | mysqlc/source/mysqlc_connection.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index a62716ee444a..267f16558233 100644 --- a/mysqlc/source/mysqlc_connection.cxx +++ b/mysqlc/source/mysqlc_connection.cxx @@ -26,14 +26,6 @@ * for a copy of the LGPLv3 License. ************************************************************************/ -#include <tools/preextstl.h> -#include <cppconn/driver.h> -#include <cppconn/connection.h> -#include <cppconn/statement.h> -#include <cppconn/metadata.h> -#include <cppconn/exception.h> -#include <tools/postextstl.h> - #include "mysqlc_connection.hxx" #include "mysqlc_databasemetadata.hxx" @@ -43,6 +35,14 @@ #include "mysqlc_preparedstatement.hxx" #include "mysqlc_general.hxx" +#include <tools/preextstl.h> +#include <cppconn/driver.h> +#include <cppconn/connection.h> +#include <cppconn/statement.h> +#include <cppconn/metadata.h> +#include <cppconn/exception.h> +#include <tools/postextstl.h> + #include <com/sun/star/sdbc/ColumnValue.hpp> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/sdbc/TransactionIsolation.hpp> |