diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-06-04 15:29:58 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-04 21:18:39 +0200 |
commit | a2db194ea0eee4deb6401f6352144e5be077c140 (patch) | |
tree | e64dee3c822fc3d7970cedebb1708bc9a9554296 /connectivity/source/drivers/odbc | |
parent | 37c827103df9d3fc3a36aa2773bc080931e91830 (diff) |
connectivity: fix includes
Change-Id: I5d5dc6871789865189c78fe9135e7f8bff829489
Diffstat (limited to 'connectivity/source/drivers/odbc')
5 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/drivers/odbc/ODriver.cxx b/connectivity/source/drivers/odbc/ODriver.cxx index b6ead37a90e1..1b9582623059 100644 --- a/connectivity/source/drivers/odbc/ODriver.cxx +++ b/connectivity/source/drivers/odbc/ODriver.cxx @@ -21,7 +21,7 @@ #include "odbc/OConnection.hxx" #include "odbc/OFunctions.hxx" #include "odbc/OTools.hxx" -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> #include <cppuhelper/supportsservice.hxx> #include "resource/common_res.hrc" #include "resource/sharedresources.hxx" diff --git a/connectivity/source/drivers/odbc/OPreparedStatement.cxx b/connectivity/source/drivers/odbc/OPreparedStatement.cxx index 70bfc7723bdf..67dfaeef65ed 100644 --- a/connectivity/source/drivers/odbc/OPreparedStatement.cxx +++ b/connectivity/source/drivers/odbc/OPreparedStatement.cxx @@ -33,11 +33,11 @@ #include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> #include <com/sun/star/lang/DisposedException.hpp> -#include "connectivity/dbtools.hxx" +#include <connectivity/dbtools.hxx> #include <comphelper/types.hxx> -#include "connectivity/FValue.hxx" +#include <connectivity/FValue.hxx> #include "resource/common_res.hrc" -#include "connectivity/sqlparse.hxx" +#include <connectivity/sqlparse.hxx> #include <boost/scoped_ptr.hpp> #include <boost/type_traits/remove_reference.hpp> #include <boost/type_traits/is_same.hpp> diff --git a/connectivity/source/drivers/odbc/ORealDriver.hxx b/connectivity/source/drivers/odbc/ORealDriver.hxx index 5b3b9efbed48..01ff93f8c456 100644 --- a/connectivity/source/drivers/odbc/ORealDriver.hxx +++ b/connectivity/source/drivers/odbc/ORealDriver.hxx @@ -20,10 +20,10 @@ #ifndef INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_ODBC_OREALDRIVER_HXX #define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_ODBC_OREALDRIVER_HXX -#include "sal/config.h" +#include <sal/config.h> -#include "com/sun/star/uno/Exception.hpp" -#include "com/sun/star/uno/Reference.hxx" +#include <com/sun/star/uno/Exception.hpp> +#include <com/sun/star/uno/Reference.hxx> namespace com { namespace sun { namespace star { namespace lang { class XMultiServiceFactory; } diff --git a/connectivity/source/drivers/odbc/OResultSet.cxx b/connectivity/source/drivers/odbc/OResultSet.cxx index f5a79b0d283f..fd70b4a7b0e4 100644 --- a/connectivity/source/drivers/odbc/OResultSet.cxx +++ b/connectivity/source/drivers/odbc/OResultSet.cxx @@ -33,8 +33,8 @@ #include <cppuhelper/supportsservice.hxx> #include <com/sun/star/lang/DisposedException.hpp> #include <comphelper/types.hxx> -#include "connectivity/dbtools.hxx" -#include "connectivity/dbexception.hxx" +#include <connectivity/dbtools.hxx> +#include <connectivity/dbexception.hxx> #include "diagnose_ex.h" #include <boost/static_assert.hpp> diff --git a/connectivity/source/drivers/odbc/OStatement.cxx b/connectivity/source/drivers/odbc/OStatement.cxx index c9391e84ecfb..bb143549bee0 100644 --- a/connectivity/source/drivers/odbc/OStatement.cxx +++ b/connectivity/source/drivers/odbc/OStatement.cxx @@ -38,7 +38,7 @@ #include "diagnose_ex.h" #include <algorithm> #include "resource/common_res.hrc" -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> using namespace ::comphelper; |