diff options
45 files changed, 33 insertions, 74 deletions
diff --git a/dbaccess/Executable_odbcconfig.mk b/dbaccess/Executable_odbcconfig.mk index e741da00b1f4..66364c91b61c 100644 --- a/dbaccess/Executable_odbcconfig.mk +++ b/dbaccess/Executable_odbcconfig.mk @@ -11,11 +11,6 @@ $(eval $(call gb_Executable_Executable,odbcconfig)) $(eval $(call gb_Executable_set_targettype_gui,odbcconfig,YES)) -$(eval $(call gb_Executable_set_include,odbcconfig,\ - $$(INCLUDE) \ - -I$(SRCDIR)/dbaccess/inc \ -)) - $(eval $(call gb_Library_use_sdk_api,odbcconfig)) $(eval $(call gb_Executable_use_libraries,odbcconfig,\ diff --git a/dbaccess/Library_dba.mk b/dbaccess/Library_dba.mk index 1e23040f885f..2c2b8949013f 100644 --- a/dbaccess/Library_dba.mk +++ b/dbaccess/Library_dba.mk @@ -11,12 +11,10 @@ $(eval $(call gb_Library_Library,dba)) $(eval $(call gb_Library_use_packages,dba,\ connectivity_generated \ - dbaccess_inc \ )) $(eval $(call gb_Library_set_include,dba,\ $$(INCLUDE) \ - -I$(SRCDIR)/dbaccess/inc \ -I$(SRCDIR)/dbaccess/source/inc \ -I$(SRCDIR)/dbaccess/source/core/inc \ )) diff --git a/dbaccess/Library_dbmm.mk b/dbaccess/Library_dbmm.mk index 585d8d55010d..79536c1b86b0 100644 --- a/dbaccess/Library_dbmm.mk +++ b/dbaccess/Library_dbmm.mk @@ -9,10 +9,6 @@ $(eval $(call gb_Library_Library,dbmm)) -$(eval $(call gb_Library_use_package,dbmm,\ - dbaccess_inc \ -)) - $(eval $(call gb_Library_set_include,dbmm,\ $$(INCLUDE) \ -I$(SRCDIR)/dbaccess/inc \ diff --git a/dbaccess/Library_sdbt.mk b/dbaccess/Library_sdbt.mk index 5e4d74872497..c934f9f1b471 100644 --- a/dbaccess/Library_sdbt.mk +++ b/dbaccess/Library_sdbt.mk @@ -9,13 +9,8 @@ $(eval $(call gb_Library_Library,sdbt)) -$(eval $(call gb_Library_use_packages,sdbt,\ - dbaccess_inc \ -)) - $(eval $(call gb_Library_set_include,sdbt,\ $$(INCLUDE) \ - -I$(SRCDIR)/dbaccess/inc \ -I$(SRCDIR)/dbaccess/source/inc/ \ -I$(SRCDIR)/dbaccess/source/sdbtools/inc \ )) diff --git a/dbaccess/Module_dbaccess.mk b/dbaccess/Module_dbaccess.mk index d99724b08141..142e0cdd935b 100644 --- a/dbaccess/Module_dbaccess.mk +++ b/dbaccess/Module_dbaccess.mk @@ -22,7 +22,6 @@ $(eval $(call gb_Module_add_targets,dbaccess,\ Library_dbmm \ Library_dbu \ Library_sdbt \ - Package_inc \ UIConfig_dbaccess \ UIConfig_dbapp \ UIConfig_dbbrowser \ diff --git a/dbaccess/Package_inc.mk b/dbaccess/Package_inc.mk deleted file mode 100644 index 21e06c4b6cbe..000000000000 --- a/dbaccess/Package_inc.mk +++ /dev/null @@ -1,23 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -$(eval $(call gb_Package_Package,dbaccess_inc,$(SRCDIR)/dbaccess/inc)) - -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/AsyncronousLink.hxx,AsyncronousLink.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/controllerframe.hxx,controllerframe.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/dataview.hxx,dataview.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/dbaccessdllapi.h,dbaccessdllapi.h)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/dbaundomanager.hxx,dbaundomanager.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/dbsubcomponentcontroller.hxx,dbsubcomponentcontroller.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/genericcontroller.hxx,genericcontroller.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/IController.hxx,IController.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/IReference.hxx,IReference.hxx)) -$(eval $(call gb_Package_add_file,dbaccess_inc,inc/dbaccess/ToolBoxHelper.hxx,ToolBoxHelper.hxx)) - -# vim: set noet sw=4 ts=4: diff --git a/dbaccess/source/core/inc/recovery/dbdocrecovery.hxx b/dbaccess/source/core/inc/recovery/dbdocrecovery.hxx index c57d309e6fb9..96920f8e3f74 100644 --- a/dbaccess/source/core/inc/recovery/dbdocrecovery.hxx +++ b/dbaccess/source/core/inc/recovery/dbdocrecovery.hxx @@ -20,7 +20,7 @@ #ifndef DBACCESS_DBDOCRECOVERY_HXX #define DBACCESS_DBDOCRECOVERY_HXX -#include "dbaccessdllapi.h" +#include <dbaccess/dbaccessdllapi.h> #include <com/sun/star/embed/XStorage.hpp> #include <com/sun/star/frame/XController.hpp> diff --git a/dbaccess/source/core/recovery/storagestream.hxx b/dbaccess/source/core/recovery/storagestream.hxx index 8f655959d43f..cf227d118d89 100644 --- a/dbaccess/source/core/recovery/storagestream.hxx +++ b/dbaccess/source/core/recovery/storagestream.hxx @@ -20,7 +20,7 @@ #ifndef STORAGESTREAM_HXX #define STORAGESTREAM_HXX -#include "dbaccessdllapi.h" +#include <dbaccess/dbaccessdllapi.h> #include <com/sun/star/embed/XStorage.hpp> #include <com/sun/star/uno/XComponentContext.hpp> diff --git a/dbaccess/source/core/recovery/subcomponentloader.hxx b/dbaccess/source/core/recovery/subcomponentloader.hxx index 73285a8fbd7b..decae4450f50 100644 --- a/dbaccess/source/core/recovery/subcomponentloader.hxx +++ b/dbaccess/source/core/recovery/subcomponentloader.hxx @@ -20,7 +20,7 @@ #ifndef SUBCOMPONENTLOADER_HXX #define SUBCOMPONENTLOADER_HXX -#include "dbaccessdllapi.h" +#include <dbaccess/dbaccessdllapi.h> #include <com/sun/star/awt/XWindowListener.hpp> #include <com/sun/star/frame/XController.hpp> diff --git a/dbaccess/source/core/recovery/subcomponents.hxx b/dbaccess/source/core/recovery/subcomponents.hxx index 2682ba81a28e..fe9e9d8a3011 100644 --- a/dbaccess/source/core/recovery/subcomponents.hxx +++ b/dbaccess/source/core/recovery/subcomponents.hxx @@ -20,7 +20,7 @@ #ifndef SUBCOMPONENTS_HXX #define SUBCOMPONENTS_HXX -#include "dbaccessdllapi.h" +#include <dbaccess/dbaccessdllapi.h> #include <com/sun/star/sdb/application/DatabaseObject.hpp> diff --git a/dbaccess/source/ui/app/AppController.hxx b/dbaccess/source/ui/app/AppController.hxx index 2390f15ac9d3..e9e282040599 100644 --- a/dbaccess/source/ui/app/AppController.hxx +++ b/dbaccess/source/ui/app/AppController.hxx @@ -25,7 +25,7 @@ #include "callbacks.hxx" #include "commontypes.hxx" #include "dsntypes.hxx" -#include "genericcontroller.hxx" +#include <dbaccess/genericcontroller.hxx> #include "linkeddocuments.hxx" #include "moduledbu.hxx" #include "TableCopyHelper.hxx" diff --git a/dbaccess/source/ui/app/AppDetailPageHelper.cxx b/dbaccess/source/ui/app/AppDetailPageHelper.cxx index c7a23ad41f70..79a0afff37ee 100644 --- a/dbaccess/source/ui/app/AppDetailPageHelper.cxx +++ b/dbaccess/source/ui/app/AppDetailPageHelper.cxx @@ -53,7 +53,7 @@ #include "dbaccess_helpid.hrc" #include "dbu_app.hrc" #include "callbacks.hxx" -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include "dbustrings.hrc" #include "dbaccess_slotid.hrc" #include "databaseobjectview.hxx" diff --git a/dbaccess/source/ui/app/AppDetailView.cxx b/dbaccess/source/ui/app/AppDetailView.cxx index 65663c6c5f9d..9652e33e0f09 100644 --- a/dbaccess/source/ui/app/AppDetailView.cxx +++ b/dbaccess/source/ui/app/AppDetailView.cxx @@ -36,7 +36,7 @@ #include "AppDetailPageHelper.hxx" #include <vcl/svapp.hxx> #include "callbacks.hxx" -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include "moduledbu.hxx" #include <svtools/localresaccess.hxx> #include "svtools/treelistentry.hxx" diff --git a/dbaccess/source/ui/app/AppView.cxx b/dbaccess/source/ui/app/AppView.cxx index 568d585c5758..871e29cf8662 100644 --- a/dbaccess/source/ui/app/AppView.cxx +++ b/dbaccess/source/ui/app/AppView.cxx @@ -39,7 +39,7 @@ #include "AppTitleWindow.hxx" #include "dsntypes.hxx" #include "dbustrings.hrc" -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include "browserids.hxx" #include <unotools/pathoptions.hxx> #include "IApplicationController.hxx" diff --git a/dbaccess/source/ui/app/AppView.hxx b/dbaccess/source/ui/app/AppView.hxx index ed82d61ae3b1..7c50466b5b33 100644 --- a/dbaccess/source/ui/app/AppView.hxx +++ b/dbaccess/source/ui/app/AppView.hxx @@ -19,7 +19,7 @@ #ifndef DBAUI_APPVIEW_HXX #define DBAUI_APPVIEW_HXX -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <com/sun/star/container/XNameAccess.hpp> #include <com/sun/star/sdbc/XDatabaseMetaData.hpp> #include <com/sun/star/ucb/XContent.hpp> diff --git a/dbaccess/source/ui/app/IApplicationController.hxx b/dbaccess/source/ui/app/IApplicationController.hxx index 297e2f393a7e..fbcc6583ea98 100644 --- a/dbaccess/source/ui/app/IApplicationController.hxx +++ b/dbaccess/source/ui/app/IApplicationController.hxx @@ -20,7 +20,7 @@ #ifndef DBA30D_IAPPLICATIONCONTROLLER_HXX #define DBA30D_IAPPLICATIONCONTROLLER_HXX -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include "AppElementType.hxx" #include "callbacks.hxx" diff --git a/dbaccess/source/ui/browser/AsyncronousLink.cxx b/dbaccess/source/ui/browser/AsyncronousLink.cxx index f1b516d39e7e..a2c89691458f 100644 --- a/dbaccess/source/ui/browser/AsyncronousLink.cxx +++ b/dbaccess/source/ui/browser/AsyncronousLink.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "AsyncronousLink.hxx" +#include <dbaccess/AsyncronousLink.hxx> #include <vcl/svapp.hxx> #include <tools/debug.hxx> diff --git a/dbaccess/source/ui/browser/dataview.cxx b/dbaccess/source/ui/browser/dataview.cxx index fa43ee883e32..425a66654d17 100644 --- a/dbaccess/source/ui/browser/dataview.cxx +++ b/dbaccess/source/ui/browser/dataview.cxx @@ -18,13 +18,13 @@ */ -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <toolkit/unohlp.hxx> #include <comphelper/types.hxx> #include <comphelper/namedvaluecollection.hxx> #include <sfx2/app.hxx> #include <sfx2/imgmgr.hxx> -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include "UITools.hxx" #include <sfx2/sfx.hrc> #include <svtools/imgdef.hxx> diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx index 52de673fb1f3..aeb4b026ad21 100644 --- a/dbaccess/source/ui/browser/genericcontroller.cxx +++ b/dbaccess/source/ui/browser/genericcontroller.cxx @@ -17,13 +17,13 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "genericcontroller.hxx" +#include <dbaccess/genericcontroller.hxx> #include <comphelper/uno3.hxx> #include <toolkit/awt/vclxwindow.hxx> #include "browserids.hxx" #include <vcl/svapp.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <tools/diagnose_ex.h> #include <osl/diagnose.h> #include "dbustrings.hrc" diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx index 27cafea7bb8d..b0d5e1572e27 100644 --- a/dbaccess/source/ui/control/dbtreelistbox.cxx +++ b/dbaccess/source/ui/control/dbtreelistbox.cxx @@ -33,7 +33,7 @@ #include <cppuhelper/interfacecontainer.hxx> #include <vcl/help.hxx> #include "tabletree.hrc" -#include "IController.hxx" +#include <dbaccess/IController.hxx> #include <framework/actiontriggerhelper.hxx> #include <toolkit/helper/vclunohelper.hxx> #include <framework/imageproducer.hxx> diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx b/dbaccess/source/ui/dlg/dbwizsetup.cxx index 89aebb22b3df..e16813fc2b31 100644 --- a/dbaccess/source/ui/dlg/dbwizsetup.cxx +++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx @@ -45,7 +45,7 @@ #include "ConnectionPageSetup.hxx" #include "UITools.hxx" #include "dbadmin.hrc" -#include "AsyncronousLink.hxx" +#include <dbaccess/AsyncronousLink.hxx> #include <sfx2/filedlghelper.hxx> #include <cppuhelper/exc_hlp.hxx> diff --git a/dbaccess/source/ui/inc/JoinDesignView.hxx b/dbaccess/source/ui/inc/JoinDesignView.hxx index d21f722748d2..4578cc57dc07 100644 --- a/dbaccess/source/ui/inc/JoinDesignView.hxx +++ b/dbaccess/source/ui/inc/JoinDesignView.hxx @@ -20,7 +20,7 @@ #ifndef DBAUI_JOINDESIGNVIEW_HXX #define DBAUI_JOINDESIGNVIEW_HXX -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #ifndef _VECTOR_ #include <vector> #endif diff --git a/dbaccess/source/ui/inc/TableDesignView.hxx b/dbaccess/source/ui/inc/TableDesignView.hxx index 79c6e42ea600..7e99ac682d8c 100644 --- a/dbaccess/source/ui/inc/TableDesignView.hxx +++ b/dbaccess/source/ui/inc/TableDesignView.hxx @@ -19,7 +19,7 @@ #ifndef DBAUI_TABLEDESIGNVIEW_HXX #define DBAUI_TABLEDESIGNVIEW_HXX -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/frame/XController.hpp> #include <vcl/split.hxx> diff --git a/dbaccess/source/ui/inc/brwctrlr.hxx b/dbaccess/source/ui/inc/brwctrlr.hxx index 63aef0cded60..c7651a1bbf37 100644 --- a/dbaccess/source/ui/inc/brwctrlr.hxx +++ b/dbaccess/source/ui/inc/brwctrlr.hxx @@ -20,7 +20,7 @@ #ifndef _SBA_BWRCTRLR_HXX #define _SBA_BWRCTRLR_HXX -#include "genericcontroller.hxx" +#include <dbaccess/genericcontroller.hxx> #include "moduledbu.hxx" #include "brwview.hxx" #include "sbagrid.hxx" diff --git a/dbaccess/source/ui/inc/brwview.hxx b/dbaccess/source/ui/inc/brwview.hxx index d84471197e84..d43b1094c9f9 100644 --- a/dbaccess/source/ui/inc/brwview.hxx +++ b/dbaccess/source/ui/inc/brwview.hxx @@ -25,7 +25,7 @@ #include <tools/resid.hxx> #include <com/sun/star/awt/PosSize.hpp> -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <unotools/eventlisteneradapter.hxx> diff --git a/dbaccess/source/ui/inc/indexdialog.hxx b/dbaccess/source/ui/inc/indexdialog.hxx index 7d69c6221df8..ddb467152c73 100644 --- a/dbaccess/source/ui/inc/indexdialog.hxx +++ b/dbaccess/source/ui/inc/indexdialog.hxx @@ -32,7 +32,7 @@ #include <svtools/treelistbox.hxx> #include <unotools/viewoptions.hxx> #include "indexes.hxx" -#include "ToolBoxHelper.hxx" +#include <dbaccess/ToolBoxHelper.hxx> //...................................................................... namespace dbaui diff --git a/dbaccess/source/ui/inc/querycontainerwindow.hxx b/dbaccess/source/ui/inc/querycontainerwindow.hxx index 5fab032b3cfa..e052f9a39c33 100644 --- a/dbaccess/source/ui/inc/querycontainerwindow.hxx +++ b/dbaccess/source/ui/inc/querycontainerwindow.hxx @@ -22,7 +22,7 @@ #include <vcl/window.hxx> #include <vcl/split.hxx> -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include <com/sun/star/frame/XFrame2.hpp> #include "QueryViewSwitch.hxx" #include <vcl/dockwin.hxx> diff --git a/dbaccess/source/ui/inc/singledoccontroller.hxx b/dbaccess/source/ui/inc/singledoccontroller.hxx index 6c55b743d032..f4b1e8327fa1 100644 --- a/dbaccess/source/ui/inc/singledoccontroller.hxx +++ b/dbaccess/source/ui/inc/singledoccontroller.hxx @@ -20,7 +20,7 @@ #ifndef DBAUI_SINGLEDOCCONTROLLER_HXX #define DBAUI_SINGLEDOCCONTROLLER_HXX -#include "dbsubcomponentcontroller.hxx" +#include <dbaccess/dbsubcomponentcontroller.hxx> #include <com/sun/star/document/XUndoManagerSupplier.hpp> diff --git a/dbaccess/source/ui/misc/TableCopyHelper.cxx b/dbaccess/source/ui/misc/TableCopyHelper.cxx index 983e6631bdfa..1d950a83519d 100644 --- a/dbaccess/source/ui/misc/TableCopyHelper.cxx +++ b/dbaccess/source/ui/misc/TableCopyHelper.cxx @@ -22,7 +22,7 @@ #include "sqlmessage.hxx" #include <vcl/msgbox.hxx> #include "WCopyTable.hxx" -#include "genericcontroller.hxx" +#include <dbaccess/genericcontroller.hxx> #include "WCPage.hxx" #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp> @@ -34,7 +34,7 @@ #include "HtmlReader.hxx" #include "TokenWriter.hxx" #include "UITools.hxx" -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include "dbu_resource.hrc" #include <unotools/ucbhelper.hxx> #include <tools/urlobj.hxx> diff --git a/dbaccess/source/ui/misc/ToolBoxHelper.cxx b/dbaccess/source/ui/misc/ToolBoxHelper.cxx index 1cb2e3312ed6..9662364b5f10 100644 --- a/dbaccess/source/ui/misc/ToolBoxHelper.cxx +++ b/dbaccess/source/ui/misc/ToolBoxHelper.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "ToolBoxHelper.hxx" +#include <dbaccess/ToolBoxHelper.hxx> #include <vcl/toolbox.hxx> #include <vcl/svapp.hxx> #include <svtools/miscopt.hxx> diff --git a/dbaccess/source/ui/misc/controllerframe.cxx b/dbaccess/source/ui/misc/controllerframe.cxx index ed788166d924..8ba38f3234d3 100644 --- a/dbaccess/source/ui/misc/controllerframe.cxx +++ b/dbaccess/source/ui/misc/controllerframe.cxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "controllerframe.hxx" -#include "IController.hxx" +#include <dbaccess/controllerframe.hxx> +#include <dbaccess/IController.hxx> #include <com/sun/star/sdb/XOfficeDatabaseDocument.hpp> #include <com/sun/star/awt/XTopWindow.hpp> diff --git a/dbaccess/source/ui/misc/dbaundomanager.cxx b/dbaccess/source/ui/misc/dbaundomanager.cxx index 5bf932b55e98..1dd1e1b74eaa 100644 --- a/dbaccess/source/ui/misc/dbaundomanager.cxx +++ b/dbaccess/source/ui/misc/dbaundomanager.cxx @@ -18,7 +18,7 @@ */ -#include "dbaundomanager.hxx" +#include <dbaccess/dbaundomanager.hxx> #include <com/sun/star/lang/DisposedException.hpp> diff --git a/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx b/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx index 79266604fbb8..7944f4f9656e 100644 --- a/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx +++ b/dbaccess/source/ui/misc/dbsubcomponentcontroller.cxx @@ -20,11 +20,11 @@ #include "browserids.hxx" #include "commontypes.hxx" -#include "dataview.hxx" +#include <dbaccess/dataview.hxx> #include "dbu_misc.hrc" #include "dbustrings.hrc" #include "moduledbu.hxx" -#include "dbsubcomponentcontroller.hxx" +#include <dbaccess/dbsubcomponentcontroller.hxx> #include <com/sun/star/frame/XUntitledNumbers.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> diff --git a/dbaccess/source/ui/misc/singledoccontroller.cxx b/dbaccess/source/ui/misc/singledoccontroller.cxx index 0b3f19bd7ef5..4b451ff450f0 100644 --- a/dbaccess/source/ui/misc/singledoccontroller.cxx +++ b/dbaccess/source/ui/misc/singledoccontroller.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "dbaundomanager.hxx" +#include <dbaccess/dbaundomanager.hxx> #include "singledoccontroller.hxx" #include "browserids.hxx" #include "dbu_misc.hrc" diff --git a/dbaccess/source/ui/misc/uiservices.cxx b/dbaccess/source/ui/misc/uiservices.cxx index e647c18c2a06..40c3a7a80262 100644 --- a/dbaccess/source/ui/misc/uiservices.cxx +++ b/dbaccess/source/ui/misc/uiservices.cxx @@ -21,7 +21,6 @@ #include <cppuhelper/factory.hxx> #include <osl/diagnose.h> #include "dbu_reghelper.hxx" -#include "dbaccessdllapi.h" using namespace ::dbaui; diff --git a/dbaccess/inc/AsyncronousLink.hxx b/include/dbaccess/AsyncronousLink.hxx index 6c62d66b470f..6c62d66b470f 100644 --- a/dbaccess/inc/AsyncronousLink.hxx +++ b/include/dbaccess/AsyncronousLink.hxx diff --git a/dbaccess/inc/IController.hxx b/include/dbaccess/IController.hxx index d699ef4c6c43..d699ef4c6c43 100644 --- a/dbaccess/inc/IController.hxx +++ b/include/dbaccess/IController.hxx diff --git a/dbaccess/inc/IReference.hxx b/include/dbaccess/IReference.hxx index bdfb8e1d99b7..bdfb8e1d99b7 100644 --- a/dbaccess/inc/IReference.hxx +++ b/include/dbaccess/IReference.hxx diff --git a/dbaccess/inc/ToolBoxHelper.hxx b/include/dbaccess/ToolBoxHelper.hxx index 298bbc83b11b..298bbc83b11b 100644 --- a/dbaccess/inc/ToolBoxHelper.hxx +++ b/include/dbaccess/ToolBoxHelper.hxx diff --git a/dbaccess/inc/controllerframe.hxx b/include/dbaccess/controllerframe.hxx index d6834e20e90f..d6834e20e90f 100644 --- a/dbaccess/inc/controllerframe.hxx +++ b/include/dbaccess/controllerframe.hxx diff --git a/dbaccess/inc/dataview.hxx b/include/dbaccess/dataview.hxx index 70fcf034af6f..70fcf034af6f 100644 --- a/dbaccess/inc/dataview.hxx +++ b/include/dbaccess/dataview.hxx diff --git a/dbaccess/inc/dbaccessdllapi.h b/include/dbaccess/dbaccessdllapi.h index aff4e9613ca2..aff4e9613ca2 100644 --- a/dbaccess/inc/dbaccessdllapi.h +++ b/include/dbaccess/dbaccessdllapi.h diff --git a/dbaccess/inc/dbaundomanager.hxx b/include/dbaccess/dbaundomanager.hxx index a04b57248053..a04b57248053 100644 --- a/dbaccess/inc/dbaundomanager.hxx +++ b/include/dbaccess/dbaundomanager.hxx diff --git a/dbaccess/inc/dbsubcomponentcontroller.hxx b/include/dbaccess/dbsubcomponentcontroller.hxx index 17319cb84325..17319cb84325 100644 --- a/dbaccess/inc/dbsubcomponentcontroller.hxx +++ b/include/dbaccess/dbsubcomponentcontroller.hxx diff --git a/dbaccess/inc/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index 6a7fd7f4bc2c..6a7fd7f4bc2c 100644 --- a/dbaccess/inc/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx |