summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-23 22:42:52 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-23 22:46:10 +0200
commit4b27653a122acbbb38c800f0b1972f339e73d115 (patch)
tree3331415ede49520ef9090bdb3c1fb3dce9748e59 /dbaccess/source/ui/misc
parent54ef1c155990bee247f083a37be9515b43709ac3 (diff)
loplugin:includeform: dbaccess
Change-Id: I15aee966012612033ab7e2ee03ac1a553802f540
Diffstat (limited to 'dbaccess/source/ui/misc')
-rw-r--r--dbaccess/source/ui/misc/DExport.cxx24
-rw-r--r--dbaccess/source/ui/misc/HtmlReader.cxx22
-rw-r--r--dbaccess/source/ui/misc/RowSetDrop.cxx12
-rw-r--r--dbaccess/source/ui/misc/RtfReader.cxx14
-rw-r--r--dbaccess/source/ui/misc/TableCopyHelper.cxx28
-rw-r--r--dbaccess/source/ui/misc/TokenWriter.cxx12
-rw-r--r--dbaccess/source/ui/misc/ToolBoxHelper.cxx2
-rw-r--r--dbaccess/source/ui/misc/UITools.cxx32
-rw-r--r--dbaccess/source/ui/misc/UpdateHelperImpl.hxx2
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx20
-rw-r--r--dbaccess/source/ui/misc/WColumnSelect.cxx10
-rw-r--r--dbaccess/source/ui/misc/WCopyTable.cxx24
-rw-r--r--dbaccess/source/ui/misc/WExtendPages.cxx8
-rw-r--r--dbaccess/source/ui/misc/WNameMatch.cxx16
-rw-r--r--dbaccess/source/ui/misc/WTypeSelect.cxx24
-rw-r--r--dbaccess/source/ui/misc/asyncmodaldialog.cxx2
-rw-r--r--dbaccess/source/ui/misc/charsets.cxx6
-rw-r--r--dbaccess/source/ui/misc/databaseobjectview.cxx8
-rw-r--r--dbaccess/source/ui/misc/datasourceconnector.cxx12
-rw-r--r--dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx12
-rw-r--r--dbaccess/source/ui/misc/defaultobjectnamecheck.cxx6
-rw-r--r--dbaccess/source/ui/misc/dsmeta.cxx4
-rw-r--r--dbaccess/source/ui/misc/imageprovider.cxx10
-rw-r--r--dbaccess/source/ui/misc/indexcollection.cxx2
-rw-r--r--dbaccess/source/ui/misc/linkeddocuments.cxx14
-rw-r--r--dbaccess/source/ui/misc/propertysetitem.cxx2
-rw-r--r--dbaccess/source/ui/misc/propertystorage.cxx2
-rw-r--r--dbaccess/source/ui/misc/singledoccontroller.cxx10
-rw-r--r--dbaccess/source/ui/misc/stringlistitem.cxx2
-rw-r--r--dbaccess/source/ui/misc/uiservices.cxx4
30 files changed, 173 insertions, 173 deletions
diff --git a/dbaccess/source/ui/misc/DExport.cxx b/dbaccess/source/ui/misc/DExport.cxx
index 0570a5cd1ff3..6b5493a39ec1 100644
--- a/dbaccess/source/ui/misc/DExport.cxx
+++ b/dbaccess/source/ui/misc/DExport.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "DExport.hxx"
-#include "core_resource.hxx"
+#include <DExport.hxx>
+#include <core_resource.hxx>
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
@@ -33,27 +33,27 @@
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
-#include "stringconstants.hxx"
-#include "strings.hrc"
-#include "strings.hxx"
+#include <stringconstants.hxx>
+#include <strings.hrc>
+#include <strings.hxx>
#include <connectivity/dbconversion.hxx>
#include <osl/thread.h>
#include <sfx2/sfxhtml.hxx>
#include <svl/numuno.hxx>
#include <connectivity/dbtools.hxx>
#include <comphelper/extract.hxx>
-#include "TypeInfo.hxx"
-#include "FieldDescriptions.hxx"
-#include "UITools.hxx"
+#include <TypeInfo.hxx>
+#include <FieldDescriptions.hxx>
+#include <UITools.hxx>
#include <unotools/configmgr.hxx>
#include <tools/debug.hxx>
#include <tools/diagnose_ex.h>
#include <tools/contnr.hxx>
#include <i18nlangtag/mslangid.hxx>
#include <com/sun/star/awt/FontDescriptor.hpp>
-#include "WCopyTable.hxx"
-#include "WExtendPages.hxx"
-#include "WCPage.hxx"
+#include <WCopyTable.hxx>
+#include <WExtendPages.hxx>
+#include <WCPage.hxx>
#include <unotools/syslocale.hxx>
#include <svl/zforlist.hxx>
#include <connectivity/dbexception.hxx>
@@ -61,7 +61,7 @@
#include <com/sun/star/sdbc/SQLWarning.hpp>
#include <com/sun/star/sdb/SQLContext.hpp>
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
-#include "sqlmessage.hxx"
+#include <sqlmessage.hxx>
#include "UpdateHelperImpl.hxx"
#include <vcl/msgbox.hxx>
#include <cppuhelper/exc_hlp.hxx>
diff --git a/dbaccess/source/ui/misc/HtmlReader.cxx b/dbaccess/source/ui/misc/HtmlReader.cxx
index 6f344fae645b..176f9eeab172 100644
--- a/dbaccess/source/ui/misc/HtmlReader.cxx
+++ b/dbaccess/source/ui/misc/HtmlReader.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "HtmlReader.hxx"
+#include <HtmlReader.hxx>
#include <connectivity/dbconversion.hxx>
#include <connectivity/dbtools.hxx>
#include <toolkit/helper/vclunohelper.hxx>
@@ -25,11 +25,11 @@
#include <tools/tenccvt.hxx>
#include <comphelper/extract.hxx>
#include <comphelper/string.hxx>
-#include "strings.hrc"
-#include "stringconstants.hxx"
+#include <strings.hrc>
+#include <stringconstants.hxx>
#include <sfx2/sfxhtml.hxx>
#include <osl/diagnose.h>
-#include "core_resource.hxx"
+#include <core_resource.hxx>
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XAppend.hpp>
@@ -45,14 +45,14 @@
#include <svtools/htmltokn.h>
#include <svtools/htmlkywd.hxx>
#include <tools/color.hxx>
-#include "WCopyTable.hxx"
-#include "WExtendPages.hxx"
-#include "WNameMatch.hxx"
-#include "WColumnSelect.hxx"
-#include "QEnumTypes.hxx"
-#include "WCPage.hxx"
+#include <WCopyTable.hxx>
+#include <WExtendPages.hxx>
+#include <WNameMatch.hxx>
+#include <WColumnSelect.hxx>
+#include <QEnumTypes.hxx>
+#include <WCPage.hxx>
#include <rtl/tencinfo.h>
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
diff --git a/dbaccess/source/ui/misc/RowSetDrop.cxx b/dbaccess/source/ui/misc/RowSetDrop.cxx
index 4a02455f8e35..bcaf2e42caab 100644
--- a/dbaccess/source/ui/misc/RowSetDrop.cxx
+++ b/dbaccess/source/ui/misc/RowSetDrop.cxx
@@ -18,15 +18,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "TokenWriter.hxx"
+#include <TokenWriter.hxx>
#include <com/sun/star/sdbc/XColumnLocate.hpp>
#include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
-#include "core_resource.hxx"
-#include "strings.hrc"
-#include "strings.hxx"
-#include "sqlmessage.hxx"
+#include <core_resource.hxx>
+#include <strings.hrc>
+#include <strings.hxx>
+#include <sqlmessage.hxx>
#include <vcl/msgbox.hxx>
-#include "stringconstants.hxx"
+#include <stringconstants.hxx>
#include <com/sun/star/sdbc/XRowUpdate.hpp>
#include <functional>
diff --git a/dbaccess/source/ui/misc/RtfReader.cxx b/dbaccess/source/ui/misc/RtfReader.cxx
index 3fdb0ee3ffa1..1153352764fa 100644
--- a/dbaccess/source/ui/misc/RtfReader.cxx
+++ b/dbaccess/source/ui/misc/RtfReader.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "RtfReader.hxx"
+#include <RtfReader.hxx>
#include <tools/stream.hxx>
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
@@ -31,20 +31,20 @@
#include <com/sun/star/awt/FontUnderline.hpp>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/XNumberFormatTypes.hpp>
-#include "core_resource.hxx"
-#include "stringconstants.hxx"
+#include <core_resource.hxx>
+#include <stringconstants.hxx>
#include <svtools/rtftoken.h>
#include <toolkit/helper/vclunohelper.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#include <vcl/msgbox.hxx>
#include <connectivity/dbconversion.hxx>
#include <connectivity/dbtools.hxx>
#include <comphelper/extract.hxx>
#include <comphelper/string.hxx>
#include <tools/color.hxx>
-#include "WExtendPages.hxx"
-#include "QEnumTypes.hxx"
-#include "UITools.hxx"
+#include <WExtendPages.hxx>
+#include <QEnumTypes.hxx>
+#include <UITools.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
diff --git a/dbaccess/source/ui/misc/TableCopyHelper.cxx b/dbaccess/source/ui/misc/TableCopyHelper.cxx
index 3cfcb0c536e7..9053225036ea 100644
--- a/dbaccess/source/ui/misc/TableCopyHelper.cxx
+++ b/dbaccess/source/ui/misc/TableCopyHelper.cxx
@@ -17,28 +17,28 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "TableCopyHelper.hxx"
-#include "core_resource.hxx"
-#include "stringconstants.hxx"
-#include "strings.hrc"
-#include "strings.hxx"
-#include "sqlmessage.hxx"
+#include <TableCopyHelper.hxx>
+#include <core_resource.hxx>
+#include <stringconstants.hxx>
+#include <strings.hrc>
+#include <strings.hxx>
+#include <sqlmessage.hxx>
#include <vcl/msgbox.hxx>
-#include "WCopyTable.hxx"
+#include <WCopyTable.hxx>
#include <dbaccess/genericcontroller.hxx>
-#include "WCPage.hxx"
+#include <WCPage.hxx>
#include <com/sun/star/task/XInteractionHandler.hpp>
#include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp>
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
#include <com/sun/star/sdb/application/CopyTableWizard.hpp>
#include <com/sun/star/sdb/DataAccessDescriptorFactory.hpp>
-#include "RtfReader.hxx"
-#include "HtmlReader.hxx"
-#include "TokenWriter.hxx"
-#include "UITools.hxx"
+#include <RtfReader.hxx>
+#include <HtmlReader.hxx>
+#include <TokenWriter.hxx>
+#include <UITools.hxx>
#include <dbaccess/dataview.hxx>
-#include "dbu_pageids.hxx"
+#include <dbu_pageids.hxx>
#include <unotools/ucbhelper.hxx>
#include <tools/urlobj.hxx>
#include <tools/diagnose_ex.h>
@@ -57,7 +57,7 @@
#include <unotools/tempfile.hxx>
#include <cppuhelper/exc_hlp.hxx>
-#include "dbexchange.hxx"
+#include <dbexchange.hxx>
namespace dbaui
{
using namespace ::dbtools;
diff --git a/dbaccess/source/ui/misc/TokenWriter.cxx b/dbaccess/source/ui/misc/TokenWriter.cxx
index 402cdf4a0ea8..4cc780f07616 100644
--- a/dbaccess/source/ui/misc/TokenWriter.cxx
+++ b/dbaccess/source/ui/misc/TokenWriter.cxx
@@ -17,15 +17,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "TokenWriter.hxx"
+#include <TokenWriter.hxx>
#include <tools/debug.hxx>
#include <tools/diagnose_ex.h>
#include <tools/stream.hxx>
#include <osl/diagnose.h>
-#include "RtfReader.hxx"
-#include "HtmlReader.hxx"
-#include "stringconstants.hxx"
-#include "strings.hxx"
+#include <RtfReader.hxx>
+#include <HtmlReader.hxx>
+#include <stringconstants.hxx>
+#include <strings.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/string.hxx>
#include <comphelper/types.hxx>
@@ -50,7 +50,7 @@
#include <sfx2/frmhtmlw.hxx>
#include <svl/numuno.hxx>
#include <vcl/svapp.hxx>
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
diff --git a/dbaccess/source/ui/misc/ToolBoxHelper.cxx b/dbaccess/source/ui/misc/ToolBoxHelper.cxx
index e49e1be8c989..75fc8e27cc50 100644
--- a/dbaccess/source/ui/misc/ToolBoxHelper.cxx
+++ b/dbaccess/source/ui/misc/ToolBoxHelper.cxx
@@ -21,7 +21,7 @@
#include <vcl/toolbox.hxx>
#include <vcl/svapp.hxx>
#include <svtools/miscopt.hxx>
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <svtools/imgdef.hxx>
#include <vcl/event.hxx>
#include <vcl/settings.hxx>
diff --git a/dbaccess/source/ui/misc/UITools.cxx b/dbaccess/source/ui/misc/UITools.cxx
index a8840427cc86..598e01c2d783 100644
--- a/dbaccess/source/ui/misc/UITools.cxx
+++ b/dbaccess/source/ui/misc/UITools.cxx
@@ -17,15 +17,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <sfx2/docfilt.hxx>
-#include "callbacks.hxx"
-#include "core_resource.hxx"
-#include "stringconstants.hxx"
-#include "dbu_pageids.hxx"
-#include "dlgsave.hxx"
-#include "dbtreelistbox.hxx"
-#include "defaultobjectnamecheck.hxx"
+#include <callbacks.hxx>
+#include <core_resource.hxx>
+#include <stringconstants.hxx>
+#include <dbu_pageids.hxx>
+#include <dlgsave.hxx>
+#include <dbtreelistbox.hxx>
+#include <defaultobjectnamecheck.hxx>
#include <comphelper/extract.hxx>
#include <com/sun/star/sdb/DatabaseContext.hpp>
#include <com/sun/star/sdb/XSingleSelectQueryAnalyzer.hpp>
@@ -66,8 +66,8 @@
#include <com/sun/star/awt/FontWeight.hpp>
#include <com/sun/star/awt/FontRelief.hpp>
#include <com/sun/star/awt/FontWidth.hpp>
-#include "TypeInfo.hxx"
-#include "FieldDescriptions.hxx"
+#include <TypeInfo.hxx>
+#include <FieldDescriptions.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/propertysequence.hxx>
@@ -75,26 +75,26 @@
#include <svx/svxids.hrc>
#include <svl/itempool.hxx>
-#include "helpids.h"
+#include <helpids.h>
#include <svl/itemset.hxx>
-#include "sbagrid.hrc"
+#include <sbagrid.hrc>
#include <svl/rngitem.hxx>
#include <svl/intitem.hxx>
#include <svx/algitem.hxx>
#include <svx/numinf.hxx>
#include <svl/zforlist.hxx>
-#include "dlgattr.hxx"
+#include <dlgattr.hxx>
#include <vcl/msgbox.hxx>
#include <com/sun/star/container/XChild.hpp>
#include <com/sun/star/util/NumberFormatter.hpp>
#include <com/sun/star/util/XNumberFormatsSupplier.hpp>
#include <com/sun/star/util/XNumberFormatter.hpp>
-#include "strings.hrc"
-#include "sqlmessage.hxx"
+#include <strings.hrc>
+#include <sqlmessage.hxx>
#include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/URL.hpp>
#include <vcl/toolbox.hxx>
-#include "dlgsize.hxx"
+#include <dlgsize.hxx>
#include <svtools/editbrowsebox.hxx>
#include <unotools/configmgr.hxx>
#include <svtools/helpopt.hxx>
diff --git a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
index d41aec19e284..40eb1fd1afb1 100644
--- a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
+++ b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
@@ -25,7 +25,7 @@
#include <com/sun/star/sdbc/XPreparedStatement.hpp>
#include <com/sun/star/sdbc/XRowSet.hpp>
#include <com/sun/star/sdbc/XResultSetMetaData.hpp>
-#include "IUpdateHelper.hxx"
+#include <IUpdateHelper.hxx>
namespace dbaui
{
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx
index c704cac09fa3..1b79ab76ed19 100644
--- a/dbaccess/source/ui/misc/WCPage.cxx
+++ b/dbaccess/source/ui/misc/WCPage.cxx
@@ -17,15 +17,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "WCPage.hxx"
-#include "WCopyTable.hxx"
-#include "WColumnSelect.hxx"
-#include "WExtendPages.hxx"
-
-#include "defaultobjectnamecheck.hxx"
-#include "helpids.h"
-#include "strings.hrc"
-#include "core_resource.hxx"
+#include <WCPage.hxx>
+#include <WCopyTable.hxx>
+#include <WColumnSelect.hxx>
+#include <WExtendPages.hxx>
+
+#include <defaultobjectnamecheck.hxx>
+#include <helpids.h>
+#include <strings.hrc>
+#include <core_resource.hxx>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
@@ -35,7 +35,7 @@
#include <vcl/msgbox.hxx>
#include <connectivity/dbexception.hxx>
#include <connectivity/dbtools.hxx>
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <cppuhelper/exc_hlp.hxx>
using namespace ::dbaui;
diff --git a/dbaccess/source/ui/misc/WColumnSelect.cxx b/dbaccess/source/ui/misc/WColumnSelect.cxx
index 1f779a534894..1deaff02ed7b 100644
--- a/dbaccess/source/ui/misc/WColumnSelect.cxx
+++ b/dbaccess/source/ui/misc/WColumnSelect.cxx
@@ -17,18 +17,18 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "WColumnSelect.hxx"
-#include "strings.hrc"
+#include <WColumnSelect.hxx>
+#include <strings.hrc>
#include <osl/diagnose.h>
-#include "WCopyTable.hxx"
+#include <WCopyTable.hxx>
#include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XAppend.hpp>
-#include "core_resource.hxx"
+#include <core_resource.hxx>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdbc/ColumnValue.hpp>
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
-#include "stringconstants.hxx"
+#include <stringconstants.hxx>
#include <functional>
using namespace ::com::sun::star::uno;
diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx
index e5e18edbe541..d02fe9a4db7a 100644
--- a/dbaccess/source/ui/misc/WCopyTable.cxx
+++ b/dbaccess/source/ui/misc/WCopyTable.cxx
@@ -17,18 +17,18 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "strings.hrc"
-#include "strings.hxx"
-#include "stringconstants.hxx"
-#include "core_resource.hxx"
-#include "sqlmessage.hxx"
-#include "UITools.hxx"
-#include "WColumnSelect.hxx"
-#include "WCopyTable.hxx"
-#include "WCPage.hxx"
-#include "WExtendPages.hxx"
-#include "WNameMatch.hxx"
-#include "WTypeSelect.hxx"
+#include <strings.hrc>
+#include <strings.hxx>
+#include <stringconstants.hxx>
+#include <core_resource.hxx>
+#include <sqlmessage.hxx>
+#include <UITools.hxx>
+#include <WColumnSelect.hxx>
+#include <WCopyTable.hxx>
+#include <WCPage.hxx>
+#include <WExtendPages.hxx>
+#include <WNameMatch.hxx>
+#include <WTypeSelect.hxx>
#include <com/sun/star/sdb/application/CopyTableOperation.hpp>
#include <com/sun/star/sdb/SQLContext.hpp>
diff --git a/dbaccess/source/ui/misc/WExtendPages.cxx b/dbaccess/source/ui/misc/WExtendPages.cxx
index 1a330f0d3a83..6d43919be87f 100644
--- a/dbaccess/source/ui/misc/WExtendPages.cxx
+++ b/dbaccess/source/ui/misc/WExtendPages.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "WExtendPages.hxx"
-#include "RtfReader.hxx"
-#include "HtmlReader.hxx"
-#include "WCopyTable.hxx"
+#include <WExtendPages.hxx>
+#include <RtfReader.hxx>
+#include <HtmlReader.hxx>
+#include <WCopyTable.hxx>
using namespace dbaui;
using namespace com::sun::star;
diff --git a/dbaccess/source/ui/misc/WNameMatch.cxx b/dbaccess/source/ui/misc/WNameMatch.cxx
index eda3d24611fa..6099824c165e 100644
--- a/dbaccess/source/ui/misc/WNameMatch.cxx
+++ b/dbaccess/source/ui/misc/WNameMatch.cxx
@@ -17,18 +17,18 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "WNameMatch.hxx"
+#include <WNameMatch.hxx>
#include <osl/diagnose.h>
-#include "FieldDescriptions.hxx"
-#include "WCopyTable.hxx"
-#include "helpids.h"
-#include "core_resource.hxx"
-#include "strings.hrc"
-#include "bitmaps.hlst"
+#include <FieldDescriptions.hxx>
+#include <WCopyTable.hxx>
+#include <helpids.h>
+#include <core_resource.hxx>
+#include <strings.hrc>
+#include <bitmaps.hlst>
#include <vcl/scrbar.hxx>
#include <vcl/settings.hxx>
#include <vcl/builderfactory.hxx>
-#include "svtools/treelistentry.hxx"
+#include <svtools/treelistentry.hxx>
#include <com/sun/star/sdbc/DataType.hpp>
#include <o3tl/make_unique.hxx>
diff --git a/dbaccess/source/ui/misc/WTypeSelect.cxx b/dbaccess/source/ui/misc/WTypeSelect.cxx
index fd0a940de182..6ab20d352a57 100644
--- a/dbaccess/source/ui/misc/WTypeSelect.cxx
+++ b/dbaccess/source/ui/misc/WTypeSelect.cxx
@@ -17,25 +17,25 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "WTypeSelect.hxx"
-#include "stringconstants.hxx"
-#include "bitmaps.hlst"
+#include <WTypeSelect.hxx>
+#include <stringconstants.hxx>
+#include <bitmaps.hlst>
#include <tools/diagnose_ex.h>
#include <osl/diagnose.h>
-#include "FieldDescriptions.hxx"
-#include "WCopyTable.hxx"
-#include "helpids.h"
-#include "strings.hrc"
+#include <FieldDescriptions.hxx>
+#include <WCopyTable.hxx>
+#include <helpids.h>
+#include <strings.hrc>
#include <tools/stream.hxx>
#include <svtools/svparser.hxx>
-#include "UITools.hxx"
-#include "core_resource.hxx"
-#include "sqlmessage.hxx"
-#include "FieldControls.hxx"
+#include <UITools.hxx>
+#include <core_resource.hxx>
+#include <sqlmessage.hxx>
+#include <FieldControls.hxx>
#include <vcl/layout.hxx>
#include <vcl/builderfactory.hxx>
-#include "dbaccess_slotid.hrc"
+#include <dbaccess_slotid.hrc>
using namespace ::dbaui;
using namespace ::com::sun::star::uno;
diff --git a/dbaccess/source/ui/misc/asyncmodaldialog.cxx b/dbaccess/source/ui/misc/asyncmodaldialog.cxx
index f92e3af17640..eb704b4dd9b2 100644
--- a/dbaccess/source/ui/misc/asyncmodaldialog.cxx
+++ b/dbaccess/source/ui/misc/asyncmodaldialog.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "asyncmodaldialog.hxx"
+#include <asyncmodaldialog.hxx>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
diff --git a/dbaccess/source/ui/misc/charsets.cxx b/dbaccess/source/ui/misc/charsets.cxx
index e8a97524fd9d..9cf2789ce1bf 100644
--- a/dbaccess/source/ui/misc/charsets.cxx
+++ b/dbaccess/source/ui/misc/charsets.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "charsets.hxx"
-#include "core_resource.hxx"
+#include <charsets.hxx>
+#include <core_resource.hxx>
#include <osl/diagnose.h>
-#include "strings.hrc"
+#include <strings.hrc>
#include <rtl/tencinfo.h>
namespace dbaui
diff --git a/dbaccess/source/ui/misc/databaseobjectview.cxx b/dbaccess/source/ui/misc/databaseobjectview.cxx
index e6215b72f967..3d795f4ec134 100644
--- a/dbaccess/source/ui/misc/databaseobjectview.cxx
+++ b/dbaccess/source/ui/misc/databaseobjectview.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "databaseobjectview.hxx"
-#include "stringconstants.hxx"
-#include "strings.hxx"
-#include "asyncmodaldialog.hxx"
+#include <databaseobjectview.hxx>
+#include <stringconstants.hxx>
+#include <strings.hxx>
+#include <asyncmodaldialog.hxx>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/frame/TaskCreator.hpp>
diff --git a/dbaccess/source/ui/misc/datasourceconnector.cxx b/dbaccess/source/ui/misc/datasourceconnector.cxx
index c12f7b8e66ff..726c83fb3016 100644
--- a/dbaccess/source/ui/misc/datasourceconnector.cxx
+++ b/dbaccess/source/ui/misc/datasourceconnector.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "core_resource.hxx"
-#include "datasourceconnector.hxx"
+#include <core_resource.hxx>
+#include <datasourceconnector.hxx>
#include <osl/diagnose.h>
-#include "stringconstants.hxx"
+#include <stringconstants.hxx>
#include <com/sun/star/sdbc/XWarningsSupplier.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sdb/XCompletedConnection.hpp>
@@ -34,14 +34,14 @@
#include <comphelper/namedvaluecollection.hxx>
#include <connectivity/dbexception.hxx>
#include <com/sun/star/sdbc/XDataSource.hpp>
-#include "UITools.hxx"
+#include <UITools.hxx>
#include <vcl/stdtext.hxx>
#include <vcl/button.hxx>
#include <svl/filenotation.hxx>
#include <tools/diagnose_ex.h>
#include <cppuhelper/exc_hlp.hxx>
-#include "strings.hrc"
-#include "strings.hxx"
+#include <strings.hrc>
+#include <strings.hxx>
namespace dbaui
{
diff --git a/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx b/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx
index 1a53fe752eae..c4b776365f8c 100644
--- a/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx
+++ b/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx
@@ -17,13 +17,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "browserids.hxx"
-#include "commontypes.hxx"
-#include "core_resource.hxx"
+#include <browserids.hxx>
+#include <commontypes.hxx>
+#include <core_resource.hxx>
#include <dbaccess/dataview.hxx>
-#include "strings.hrc"
-#include "strings.hxx"
-#include "stringconstants.hxx"
+#include <strings.hrc>
+#include <strings.hxx>
+#include <stringconstants.hxx>
#include <dbaccess/dbsubcomponentcontroller.hxx>
#include <com/sun/star/frame/XUntitledNumbers.hpp>
diff --git a/dbaccess/source/ui/misc/defaultobjectnamecheck.cxx b/dbaccess/source/ui/misc/defaultobjectnamecheck.cxx
index 5da1f40d8e59..d94f5c39c1aa 100644
--- a/dbaccess/source/ui/misc/defaultobjectnamecheck.cxx
+++ b/dbaccess/source/ui/misc/defaultobjectnamecheck.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "core_resource.hxx"
-#include "defaultobjectnamecheck.hxx"
+#include <core_resource.hxx>
+#include <defaultobjectnamecheck.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
diff --git a/dbaccess/source/ui/misc/dsmeta.cxx b/dbaccess/source/ui/misc/dsmeta.cxx
index 2d4f378a6211..4d2246bb21c0 100644
--- a/dbaccess/source/ui/misc/dsmeta.cxx
+++ b/dbaccess/source/ui/misc/dsmeta.cxx
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dsmeta.hxx"
+#include <dsmeta.hxx>
#include <connectivity/DriversConfig.hxx>
-#include "dsntypes.hxx"
+#include <dsntypes.hxx>
#include <comphelper/processfactory.hxx>
#include <map>
diff --git a/dbaccess/source/ui/misc/imageprovider.cxx b/dbaccess/source/ui/misc/imageprovider.cxx
index cc9de382e17d..bcf7832a749e 100644
--- a/dbaccess/source/ui/misc/imageprovider.cxx
+++ b/dbaccess/source/ui/misc/imageprovider.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "imageprovider.hxx"
-#include "dbu_pageids.hxx"
-#include "core_resource.hxx"
-#include "stringconstants.hxx"
-#include "bitmaps.hlst"
+#include <imageprovider.hxx>
+#include <dbu_pageids.hxx>
+#include <core_resource.hxx>
+#include <stringconstants.hxx>
+#include <bitmaps.hlst>
#include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/graphic/GraphicColorMode.hpp>
diff --git a/dbaccess/source/ui/misc/indexcollection.cxx b/dbaccess/source/ui/misc/indexcollection.cxx
index 1fe324e9b0dd..c68a96716dfa 100644
--- a/dbaccess/source/ui/misc/indexcollection.cxx
+++ b/dbaccess/source/ui/misc/indexcollection.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "indexcollection.hxx"
+#include <indexcollection.hxx>
#include <tools/diagnose_ex.h>
#include <com/sun/star/sdbcx/XAppend.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
diff --git a/dbaccess/source/ui/misc/linkeddocuments.cxx b/dbaccess/source/ui/misc/linkeddocuments.cxx
index 102f7eca51a6..297c8c2d2b5c 100644
--- a/dbaccess/source/ui/misc/linkeddocuments.cxx
+++ b/dbaccess/source/ui/misc/linkeddocuments.cxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "core_resource.hxx"
-#include "linkeddocuments.hxx"
+#include <core_resource.hxx>
+#include <linkeddocuments.hxx>
#include <osl/diagnose.h>
#include <tools/diagnose_ex.h>
#include <unotools/confignode.hxx>
-#include "stringconstants.hxx"
+#include <stringconstants.hxx>
#include <comphelper/classids.hxx>
#include <comphelper/namedvaluecollection.hxx>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
@@ -37,10 +37,10 @@
#include <comphelper/types.hxx>
#include <vcl/msgbox.hxx>
#include <ucbhelper/content.hxx>
-#include "strings.hrc"
-#include "strings.hxx"
+#include <strings.hrc>
+#include <strings.hxx>
#include <svl/filenotation.hxx>
-#include "browserids.hxx"
+#include <browserids.hxx>
#include <sfx2/new.hxx>
#include <sfx2/app.hxx>
#include <basic/sbx.hxx>
@@ -55,7 +55,7 @@
#include <connectivity/dbtools.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <com/sun/star/io/WrongFormatException.hpp>
-#include "com/sun/star/sdb/RowSetVetoException.hpp"
+#include <com/sun/star/sdb/RowSetVetoException.hpp>
namespace dbaui
{
diff --git a/dbaccess/source/ui/misc/propertysetitem.cxx b/dbaccess/source/ui/misc/propertysetitem.cxx
index d24ef05247b6..296de9ae8ee1 100644
--- a/dbaccess/source/ui/misc/propertysetitem.cxx
+++ b/dbaccess/source/ui/misc/propertysetitem.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "propertysetitem.hxx"
+#include <propertysetitem.hxx>
namespace dbaui
{
diff --git a/dbaccess/source/ui/misc/propertystorage.cxx b/dbaccess/source/ui/misc/propertystorage.cxx
index d5ab60a61b3f..31204469db17 100644
--- a/dbaccess/source/ui/misc/propertystorage.cxx
+++ b/dbaccess/source/ui/misc/propertystorage.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "propertystorage.hxx"
+#include <propertystorage.hxx>
#include <svl/itemset.hxx>
#include <svl/stritem.hxx>
diff --git a/dbaccess/source/ui/misc/singledoccontroller.cxx b/dbaccess/source/ui/misc/singledoccontroller.cxx
index 7d0bab0766b1..0a0411bbb891 100644
--- a/dbaccess/source/ui/misc/singledoccontroller.cxx
+++ b/dbaccess/source/ui/misc/singledoccontroller.cxx
@@ -19,11 +19,11 @@
#include <dbaccess/dbaundomanager.hxx>
#include <dbaccess/dataview.hxx>
-#include "core_resource.hxx"
-#include "singledoccontroller.hxx"
-#include "browserids.hxx"
-#include "strings.hrc"
-#include "stringconstants.hxx"
+#include <core_resource.hxx>
+#include <singledoccontroller.hxx>
+#include <browserids.hxx>
+#include <strings.hrc>
+#include <stringconstants.hxx>
#include <svl/undo.hxx>
diff --git a/dbaccess/source/ui/misc/stringlistitem.cxx b/dbaccess/source/ui/misc/stringlistitem.cxx
index 2c5d23f64188..32649443b14e 100644
--- a/dbaccess/source/ui/misc/stringlistitem.cxx
+++ b/dbaccess/source/ui/misc/stringlistitem.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "stringlistitem.hxx"
+#include <stringlistitem.hxx>
namespace dbaui
{
diff --git a/dbaccess/source/ui/misc/uiservices.cxx b/dbaccess/source/ui/misc/uiservices.cxx
index 1c2687eaf7b8..aabb6cfd9e6c 100644
--- a/dbaccess/source/ui/misc/uiservices.cxx
+++ b/dbaccess/source/ui/misc/uiservices.cxx
@@ -18,8 +18,8 @@
*/
#include <cppuhelper/factory.hxx>
-#include "dbu_reghelper.hxx"
-#include "uiservices.hxx"
+#include <dbu_reghelper.hxx>
+#include <uiservices.hxx>
using namespace ::dbaui;
using namespace ::com::sun::star::uno;