summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2010-04-19 17:18:27 +0200
committerJens-Heiner Rechtien <hr@openoffice.org>2010-04-19 17:18:27 +0200
commitb4927c06a150d473e4a13054ca5ebe826f223910 (patch)
treed09c4864bb97cf3a193cf95d7210af3bda1faeee
parentaa5f361a423ffd1750407edabf45943cd52a6392 (diff)
DEV300 masterfix: #i10000#: juggle inclusion order to make mysqlc compilable on STLPort platforms
Notes
split repo tag: extensions_ooo/DEV300_m77
-rw-r--r--mysqlc/source/mysqlc_connection.cxx16
-rw-r--r--mysqlc/source/mysqlc_general.hxx6
2 files changed, 11 insertions, 11 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>
diff --git a/mysqlc/source/mysqlc_general.hxx b/mysqlc/source/mysqlc_general.hxx
index 166c7f2e76e6..632fb75dd65f 100644
--- a/mysqlc/source/mysqlc_general.hxx
+++ b/mysqlc/source/mysqlc_general.hxx
@@ -30,13 +30,13 @@
#ifndef _MYSQLC_GENERAL_
#define _MYSQLC_GENERAL_
+#include <com/sun/star/uno/XInterface.hpp>
+#include <com/sun/star/sdbc/SQLException.hpp>
+
#include <tools/preextstl.h>
#include <cppconn/exception.h>
#include <tools/postextstl.h>
-#include <com/sun/star/uno/XInterface.hpp>
-#include <com/sun/star/sdbc/SQLException.hpp>
-
namespace mysqlc_sdbc_driver
{
rtl::OUString getStringFromAny(const ::com::sun::star::uno::Any& _rAny);