summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/dbase
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/dbase')
-rw-r--r--connectivity/source/drivers/dbase/DCatalog.cxx6
-rw-r--r--connectivity/source/drivers/dbase/DColumns.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DConnection.cxx12
-rw-r--r--connectivity/source/drivers/dbase/DDatabaseMetaData.cxx6
-rw-r--r--connectivity/source/drivers/dbase/DDriver.cxx6
-rw-r--r--connectivity/source/drivers/dbase/DIndex.cxx12
-rw-r--r--connectivity/source/drivers/dbase/DIndexColumns.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DIndexIter.cxx2
-rw-r--r--connectivity/source/drivers/dbase/DIndexes.cxx6
-rw-r--r--connectivity/source/drivers/dbase/DPreparedStatement.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DResultSet.cxx8
-rw-r--r--connectivity/source/drivers/dbase/DStatement.cxx4
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx12
-rw-r--r--connectivity/source/drivers/dbase/DTables.cxx12
-rw-r--r--connectivity/source/drivers/dbase/Dservices.cxx2
-rw-r--r--connectivity/source/drivers/dbase/dindexnode.cxx4
16 files changed, 52 insertions, 52 deletions
diff --git a/connectivity/source/drivers/dbase/DCatalog.cxx b/connectivity/source/drivers/dbase/DCatalog.cxx
index 0c107885edb5..e320b620bdf1 100644
--- a/connectivity/source/drivers/dbase/DCatalog.cxx
+++ b/connectivity/source/drivers/dbase/DCatalog.cxx
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DCatalog.hxx"
-#include "dbase/DConnection.hxx"
-#include "dbase/DTables.hxx"
+#include <dbase/DCatalog.hxx>
+#include <dbase/DConnection.hxx>
+#include <dbase/DTables.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
diff --git a/connectivity/source/drivers/dbase/DColumns.cxx b/connectivity/source/drivers/dbase/DColumns.cxx
index c4730d75b6a8..1ffc95fbcfb1 100644
--- a/connectivity/source/drivers/dbase/DColumns.cxx
+++ b/connectivity/source/drivers/dbase/DColumns.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DColumns.hxx"
-#include "dbase/DTable.hxx"
+#include <dbase/DColumns.hxx>
+#include <dbase/DTable.hxx>
#include <connectivity/sdbcx/VColumn.hxx>
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
#include <comphelper/property.hxx>
diff --git a/connectivity/source/drivers/dbase/DConnection.cxx b/connectivity/source/drivers/dbase/DConnection.cxx
index 0a56d952e49b..c9881aed6f92 100644
--- a/connectivity/source/drivers/dbase/DConnection.cxx
+++ b/connectivity/source/drivers/dbase/DConnection.cxx
@@ -18,13 +18,13 @@
*/
-#include "dbase/DConnection.hxx"
-#include "dbase/DDatabaseMetaData.hxx"
-#include "dbase/DCatalog.hxx"
-#include "dbase/DDriver.hxx"
+#include <dbase/DConnection.hxx>
+#include <dbase/DDatabaseMetaData.hxx>
+#include <dbase/DCatalog.hxx>
+#include <dbase/DDriver.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
-#include "dbase/DPreparedStatement.hxx"
-#include "dbase/DStatement.hxx"
+#include <dbase/DPreparedStatement.hxx>
+#include <dbase/DStatement.hxx>
#include <connectivity/dbexception.hxx>
using namespace connectivity::dbase;
diff --git a/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx b/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
index 1ab8289ffe59..7e6f71c9a860 100644
--- a/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DDatabaseMetaData.hxx"
+#include <dbase/DDatabaseMetaData.hxx>
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdbc/ResultSetType.hpp>
@@ -26,9 +26,9 @@
#include <com/sun/star/sdbc/ResultSetConcurrency.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XIndexesSupplier.hpp>
-#include "FDatabaseMetaDataResultSet.hxx"
+#include <FDatabaseMetaDataResultSet.hxx>
#include <com/sun/star/lang/XUnoTunnel.hpp>
-#include "dbase/DIndex.hxx"
+#include <dbase/DIndex.hxx>
#include <connectivity/FValue.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/types.hxx>
diff --git a/connectivity/source/drivers/dbase/DDriver.cxx b/connectivity/source/drivers/dbase/DDriver.cxx
index d99efd817622..9dbcdddd3e21 100644
--- a/connectivity/source/drivers/dbase/DDriver.cxx
+++ b/connectivity/source/drivers/dbase/DDriver.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DDriver.hxx"
-#include "dbase/DConnection.hxx"
+#include <dbase/DDriver.hxx>
+#include <dbase/DConnection.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
#include <connectivity/dbexception.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#include <comphelper/processfactory.hxx>
using namespace connectivity::dbase;
diff --git a/connectivity/source/drivers/dbase/DIndex.cxx b/connectivity/source/drivers/dbase/DIndex.cxx
index 0c80d1c82a59..e4f53723bcc9 100644
--- a/connectivity/source/drivers/dbase/DIndex.cxx
+++ b/connectivity/source/drivers/dbase/DIndex.cxx
@@ -17,13 +17,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DIndex.hxx"
-#include "dbase/DIndexColumns.hxx"
+#include <dbase/DIndex.hxx>
+#include <dbase/DIndexColumns.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
#include <connectivity/sdbcx/VColumn.hxx>
#include <comphelper/sequence.hxx>
-#include "dbase/DTable.hxx"
-#include "dbase/DIndexIter.hxx"
+#include <dbase/DTable.hxx>
+#include <dbase/DIndexIter.hxx>
#include <osl/file.hxx>
#include <tools/config.hxx>
#include <connectivity/CommonTools.hxx>
@@ -35,8 +35,8 @@
#include <unotools/ucbhelper.hxx>
#include <comphelper/types.hxx>
#include <connectivity/dbexception.hxx>
-#include "dbase/DResultSet.hxx"
-#include "strings.hrc"
+#include <dbase/DResultSet.hxx>
+#include <strings.hrc>
#include <unotools/sharedunocomponent.hxx>
using namespace ::comphelper;
diff --git a/connectivity/source/drivers/dbase/DIndexColumns.cxx b/connectivity/source/drivers/dbase/DIndexColumns.cxx
index 9a586b162edd..5d144bf6f8d6 100644
--- a/connectivity/source/drivers/dbase/DIndexColumns.cxx
+++ b/connectivity/source/drivers/dbase/DIndexColumns.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DIndexColumns.hxx"
-#include "dbase/DTable.hxx"
+#include <dbase/DIndexColumns.hxx>
+#include <dbase/DTable.hxx>
#include <connectivity/sdbcx/VIndexColumn.hxx>
#include <comphelper/types.hxx>
#include <comphelper/property.hxx>
diff --git a/connectivity/source/drivers/dbase/DIndexIter.cxx b/connectivity/source/drivers/dbase/DIndexIter.cxx
index 3f072f8172d1..48ddf65459eb 100644
--- a/connectivity/source/drivers/dbase/DIndexIter.cxx
+++ b/connectivity/source/drivers/dbase/DIndexIter.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DIndexIter.hxx"
+#include <dbase/DIndexIter.hxx>
#include <com/sun/star/sdb/SQLFilterOperator.hpp>
using namespace ::com::sun::star::sdb;
diff --git a/connectivity/source/drivers/dbase/DIndexes.cxx b/connectivity/source/drivers/dbase/DIndexes.cxx
index aa772d66b5ab..ee6a12f1906d 100644
--- a/connectivity/source/drivers/dbase/DIndexes.cxx
+++ b/connectivity/source/drivers/dbase/DIndexes.cxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DIndexes.hxx"
-#include "dbase/DIndex.hxx"
+#include <dbase/DIndexes.hxx>
+#include <dbase/DIndex.hxx>
#include <connectivity/dbexception.hxx>
#include <unotools/ucbhelper.hxx>
#include <comphelper/types.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
using namespace ::comphelper;
diff --git a/connectivity/source/drivers/dbase/DPreparedStatement.cxx b/connectivity/source/drivers/dbase/DPreparedStatement.cxx
index 8aff710eaee8..60e7a6a7f3ef 100644
--- a/connectivity/source/drivers/dbase/DPreparedStatement.cxx
+++ b/connectivity/source/drivers/dbase/DPreparedStatement.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DPreparedStatement.hxx"
-#include "dbase/DResultSet.hxx"
+#include <dbase/DPreparedStatement.hxx>
+#include <dbase/DResultSet.hxx>
using namespace connectivity::dbase;
using namespace connectivity::file;
diff --git a/connectivity/source/drivers/dbase/DResultSet.cxx b/connectivity/source/drivers/dbase/DResultSet.cxx
index 0f544ed70cca..40e38e5d2973 100644
--- a/connectivity/source/drivers/dbase/DResultSet.cxx
+++ b/connectivity/source/drivers/dbase/DResultSet.cxx
@@ -18,15 +18,15 @@
*/
#include <com/sun/star/sdbcx/CompareBookmark.hpp>
-#include "dbase/DResultSet.hxx"
+#include <dbase/DResultSet.hxx>
#include <com/sun/star/lang/DisposedException.hpp>
#include <comphelper/sequence.hxx>
#include <cppuhelper/supportsservice.hxx>
-#include "dbase/DIndex.hxx"
-#include "dbase/DIndexIter.hxx"
+#include <dbase/DIndex.hxx>
+#include <dbase/DIndexIter.hxx>
#include <comphelper/types.hxx>
#include <connectivity/dbexception.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
using namespace ::comphelper;
diff --git a/connectivity/source/drivers/dbase/DStatement.cxx b/connectivity/source/drivers/dbase/DStatement.cxx
index e0eea49f36eb..096878e3e245 100644
--- a/connectivity/source/drivers/dbase/DStatement.cxx
+++ b/connectivity/source/drivers/dbase/DStatement.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DStatement.hxx"
-#include "dbase/DResultSet.hxx"
+#include <dbase/DStatement.hxx>
+#include <dbase/DResultSet.hxx>
using namespace connectivity::dbase;
using namespace connectivity::file;
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 48e03e90f9b8..10372b44a13c 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -17,19 +17,19 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DTable.hxx"
+#include <dbase/DTable.hxx>
#include <com/sun/star/container/ElementExistException.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/ucb/XContentAccess.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
#include <svl/converter.hxx>
-#include "dbase/DConnection.hxx"
-#include "dbase/DColumns.hxx"
+#include <dbase/DConnection.hxx>
+#include <dbase/DColumns.hxx>
#include <osl/thread.h>
#include <tools/config.hxx>
-#include "dbase/DIndex.hxx"
-#include "dbase/DIndexes.hxx"
+#include <dbase/DIndex.hxx>
+#include <dbase/DIndexes.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/sequence.hxx>
#include <svl/zforlist.hxx>
@@ -50,7 +50,7 @@
#include <connectivity/dbtools.hxx>
#include <connectivity/FValue.hxx>
#include <connectivity/dbconversion.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#include <rtl/strbuf.hxx>
#include <algorithm>
diff --git a/connectivity/source/drivers/dbase/DTables.cxx b/connectivity/source/drivers/dbase/DTables.cxx
index 57e7abbd9878..90f62bdc526f 100644
--- a/connectivity/source/drivers/dbase/DTables.cxx
+++ b/connectivity/source/drivers/dbase/DTables.cxx
@@ -20,19 +20,19 @@
#include <sal/config.h>
#include <dbase/DConnection.hxx>
-#include "dbase/DTables.hxx"
-#include "dbase/DTable.hxx"
+#include <dbase/DTables.hxx>
+#include <dbase/DTable.hxx>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <com/sun/star/sdbc/KeyRule.hpp>
#include <com/sun/star/sdbcx/KeyType.hpp>
-#include "file/FCatalog.hxx"
-#include "file/FConnection.hxx"
+#include <file/FCatalog.hxx>
+#include <file/FConnection.hxx>
#include <com/sun/star/lang/XUnoTunnel.hpp>
-#include "dbase/DCatalog.hxx"
+#include <dbase/DCatalog.hxx>
#include <comphelper/types.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#include <connectivity/dbexception.hxx>
using namespace ::comphelper;
diff --git a/connectivity/source/drivers/dbase/Dservices.cxx b/connectivity/source/drivers/dbase/Dservices.cxx
index 3028eec3b6aa..da3636b03953 100644
--- a/connectivity/source/drivers/dbase/Dservices.cxx
+++ b/connectivity/source/drivers/dbase/Dservices.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/DDriver.hxx"
+#include <dbase/DDriver.hxx>
#include <cppuhelper/factory.hxx>
using namespace connectivity::dbase;
diff --git a/connectivity/source/drivers/dbase/dindexnode.cxx b/connectivity/source/drivers/dbase/dindexnode.cxx
index 4e718419e38a..07f424c07d8b 100644
--- a/connectivity/source/drivers/dbase/dindexnode.cxx
+++ b/connectivity/source/drivers/dbase/dindexnode.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dbase/dindexnode.hxx"
+#include <dbase/dindexnode.hxx>
#include <connectivity/CommonTools.hxx>
#include <osl/thread.h>
-#include "dbase/DIndex.hxx"
+#include <dbase/DIndex.hxx>
#include <tools/debug.hxx>
#include <tools/stream.hxx>