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/file | |
parent | 37c827103df9d3fc3a36aa2773bc080931e91830 (diff) |
connectivity: fix includes
Change-Id: I5d5dc6871789865189c78fe9135e7f8bff829489
Diffstat (limited to 'connectivity/source/drivers/file')
-rw-r--r-- | connectivity/source/drivers/file/FColumns.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FConnection.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FDriver.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FPreparedStatement.cxx | 10 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FResultSet.cxx | 8 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FResultSetMetaData.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FStatement.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/fanalyzer.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/file/fcode.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/file/fcomp.cxx | 6 |
10 files changed, 21 insertions, 21 deletions
diff --git a/connectivity/source/drivers/file/FColumns.cxx b/connectivity/source/drivers/file/FColumns.cxx index 3f1bdbd62282..ac1a93fa7841 100644 --- a/connectivity/source/drivers/file/FColumns.cxx +++ b/connectivity/source/drivers/file/FColumns.cxx @@ -18,7 +18,7 @@ */ #include "file/FColumns.hxx" -#include "connectivity/sdbcx/VColumn.hxx" +#include <connectivity/sdbcx/VColumn.hxx> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/sdbc/XResultSet.hpp> #include <com/sun/star/sdbc/DataType.hpp> diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx index e3befff7e5d9..bd6d0a4db80d 100644 --- a/connectivity/source/drivers/file/FConnection.cxx +++ b/connectivity/source/drivers/file/FConnection.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <comphelper/processfactory.hxx> #include <cppuhelper/typeprovider.hxx> diff --git a/connectivity/source/drivers/file/FDriver.cxx b/connectivity/source/drivers/file/FDriver.cxx index b88dbfdcbb29..950a76c96764 100644 --- a/connectivity/source/drivers/file/FDriver.cxx +++ b/connectivity/source/drivers/file/FDriver.cxx @@ -23,7 +23,7 @@ #include <com/sun/star/lang/DisposedException.hpp> #include <comphelper/types.hxx> #include <cppuhelper/supportsservice.hxx> -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> #include "resource/common_res.hrc" #include "resource/sharedresources.hxx" diff --git a/connectivity/source/drivers/file/FPreparedStatement.cxx b/connectivity/source/drivers/file/FPreparedStatement.cxx index 89bab271c50c..fb9b2c2e48ec 100644 --- a/connectivity/source/drivers/file/FPreparedStatement.cxx +++ b/connectivity/source/drivers/file/FPreparedStatement.cxx @@ -19,7 +19,7 @@ #include <stdio.h> -#include "connectivity/sdbcx/VColumn.hxx" +#include <connectivity/sdbcx/VColumn.hxx> #include <osl/diagnose.h> #include "file/FPreparedStatement.hxx" #include <com/sun/star/sdbc/DataType.hpp> @@ -27,10 +27,10 @@ #include <cppuhelper/typeprovider.hxx> #include <comphelper/sequence.hxx> #include <com/sun/star/lang/DisposedException.hpp> -#include "connectivity/dbconversion.hxx" -#include "connectivity/dbexception.hxx" -#include "connectivity/dbtools.hxx" -#include "connectivity/PColumn.hxx" +#include <connectivity/dbconversion.hxx> +#include <connectivity/dbexception.hxx> +#include <connectivity/dbtools.hxx> +#include <connectivity/PColumn.hxx> #include "diagnose_ex.h" #include <comphelper/types.hxx> #include <com/sun/star/sdbc/ColumnValue.hpp> diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx index 4f454e3fd6aa..832dddc2c959 100644 --- a/connectivity/source/drivers/file/FResultSet.cxx +++ b/connectivity/source/drivers/file/FResultSet.cxx @@ -21,7 +21,7 @@ #ifdef __GNUC__ #include <iostream> #endif -#include "connectivity/sdbcx/VColumn.hxx" +#include <connectivity/sdbcx/VColumn.hxx> #include "file/FResultSet.hxx" #include "file/FResultSetMetaData.hxx" #include <com/sun/star/sdbc/DataType.hpp> @@ -32,8 +32,8 @@ #include <com/sun/star/container/XIndexAccess.hpp> #include <comphelper/sequence.hxx> #include <cppuhelper/typeprovider.hxx> -#include "connectivity/dbconversion.hxx" -#include "connectivity/dbtools.hxx" +#include <connectivity/dbconversion.hxx> +#include <connectivity/dbtools.hxx> #include <cppuhelper/propshlp.hxx> #include <iterator> #include <tools/debug.hxx> @@ -44,7 +44,7 @@ #include <algorithm> #include <comphelper/extract.hxx> -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> #include <comphelper/types.hxx> #include "resource/file_res.hrc" #include "resource/sharedresources.hxx" diff --git a/connectivity/source/drivers/file/FResultSetMetaData.cxx b/connectivity/source/drivers/file/FResultSetMetaData.cxx index e397867fe04e..919e23e911b0 100644 --- a/connectivity/source/drivers/file/FResultSetMetaData.cxx +++ b/connectivity/source/drivers/file/FResultSetMetaData.cxx @@ -20,7 +20,7 @@ #include "file/FResultSetMetaData.hxx" #include "file/FTable.hxx" #include <comphelper/extract.hxx> -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> #include <comphelper/types.hxx> diff --git a/connectivity/source/drivers/file/FStatement.cxx b/connectivity/source/drivers/file/FStatement.cxx index 031b81f4c7ae..fb3361a0e817 100644 --- a/connectivity/source/drivers/file/FStatement.cxx +++ b/connectivity/source/drivers/file/FStatement.cxx @@ -32,7 +32,7 @@ #include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> #include <cppuhelper/typeprovider.hxx> -#include "connectivity/dbexception.hxx" +#include <connectivity/dbexception.hxx> #include "resource/file_res.hrc" #include <algorithm> #include <tools/debug.hxx> diff --git a/connectivity/source/drivers/file/fanalyzer.cxx b/connectivity/source/drivers/file/fanalyzer.cxx index 6f3b65b03c17..3c01fabca4bc 100644 --- a/connectivity/source/drivers/file/fanalyzer.cxx +++ b/connectivity/source/drivers/file/fanalyzer.cxx @@ -18,12 +18,12 @@ */ #include "file/fanalyzer.hxx" -#include "connectivity/sqlparse.hxx" +#include <connectivity/sqlparse.hxx> #include <osl/diagnose.h> #include <tools/debug.hxx> #include <comphelper/extract.hxx> -#include "connectivity/sqlnode.hxx" -#include "connectivity/dbexception.hxx" +#include <connectivity/sqlnode.hxx> +#include <connectivity/dbexception.hxx> #include "file/FConnection.hxx" #include "resource/file_res.hrc" diff --git a/connectivity/source/drivers/file/fcode.cxx b/connectivity/source/drivers/file/fcode.cxx index 2f6ced4655b2..65e826003bff 100644 --- a/connectivity/source/drivers/file/fcode.cxx +++ b/connectivity/source/drivers/file/fcode.cxx @@ -19,7 +19,7 @@ #include "file/fcode.hxx" #include <osl/diagnose.h> -#include "connectivity/sqlparse.hxx" +#include <connectivity/sqlparse.hxx> #include <i18nlangtag/mslangid.hxx> #include <tools/debug.hxx> #include "TConnection.hxx" diff --git a/connectivity/source/drivers/file/fcomp.cxx b/connectivity/source/drivers/file/fcomp.cxx index e79b4a93af30..5ed3e0d92f47 100644 --- a/connectivity/source/drivers/file/fcomp.cxx +++ b/connectivity/source/drivers/file/fcomp.cxx @@ -20,14 +20,14 @@ #include "file/fcomp.hxx" #include <tools/debug.hxx> #include "TConnection.hxx" -#include "connectivity/sqlparse.hxx" +#include <connectivity/sqlparse.hxx> #include "file/fanalyzer.hxx" #include <com/sun/star/sdbc/XColumnLocate.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/Time.hpp> -#include "connectivity/dbexception.hxx" -#include "connectivity/dbconversion.hxx" +#include <connectivity/dbexception.hxx> +#include <connectivity/dbconversion.hxx> #include <com/sun/star/sdb/SQLFilterOperator.hpp> #include "resource/file_res.hrc" #include "file/FStringFunctions.hxx" |