diff options
author | Matthew Nicholls <matthew.nicholls95@hotmail.co.uk> | 2015-04-19 17:12:43 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-04-22 07:25:17 +0000 |
commit | a1a25f4c6c99c0c519cc60d842041d56ae8a6f1c (patch) | |
tree | b673a96ed3bf88c107b4a6049b9373af772026fb /dbaccess | |
parent | 81f9281de0b5b42d5f4e8f1c4ecb3a780c74ff95 (diff) |
tdf#88710 Cleanup after removing dbtoolsclient
Removes "virtualdbtools" and its implementation under "simpledbt", which are
mostly wrappers around various dbtools functions and classes, previously aiding
the now removed dynamic loading logic.
Removes IDataAccessTools, IDataAccessTypeConversion and IDataAccessToolsFactory
interfaces and their accompanying implementations which are completely unused.
Removes IDataAccessCharSet (implemented by ODataAccessCharSet) and moves the
implementation into a function which replaces ODataAccessCharsetHelper.
Removes ISQLParseNode and ISQLParser and their implementation in
OSimpleParseNode and OSimpleSQLParser, which simply wrap around OSQLParseNode
and OSQLParser respectively. To avoid including "sqlbison.hxx" unnecessarily,
includes to "sqlbison.hxx" are now only used where needed.
Change-Id: Id882dfbf43514d84a1eaffc1f916d627830c8cd6
Reviewed-on: https://gerrit.libreoffice.org/15450
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'dbaccess')
4 files changed, 4 insertions, 0 deletions
diff --git a/dbaccess/source/core/api/RowSetCache.cxx b/dbaccess/source/core/api/RowSetCache.cxx index 4a10be4f1c2d..f4baf902a7e1 100644 --- a/dbaccess/source/core/api/RowSetCache.cxx +++ b/dbaccess/source/core/api/RowSetCache.cxx @@ -48,6 +48,7 @@ #include <connectivity/sqliterator.hxx> #include <connectivity/sqlnode.hxx> #include <connectivity/sqlparse.hxx> +#include "sqlbison.hxx" #include <tools/debug.hxx> #include <tools/diagnose_ex.h> #include <osl/diagnose.h> diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx index 69c88a049e0c..a76bfb533c92 100644 --- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx +++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx @@ -24,6 +24,7 @@ #include "dbastrings.hrc" #include "HelperCollections.hxx" #include "SingleSelectQueryComposer.hxx" +#include "sqlbison.hxx" #include "sdbcoretools.hxx" #include <com/sun/star/beans/PropertyAttribute.hpp> diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx index d8fe0e30520b..82e40213244c 100644 --- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx +++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx @@ -22,6 +22,7 @@ #include "QTableWindow.hxx" #include <vcl/toolbox.hxx> #include "querycontroller.hxx" +#include "sqlbison.hxx" #include <vcl/split.hxx> #include <svl/undo.hxx> #include <tools/diagnose_ex.h> diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index e11f08d7184d..c454e2d6b44a 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -22,6 +22,7 @@ #include <com/sun/star/sdbc/DataType.hpp> #include "QueryDesignView.hxx" #include "querycontroller.hxx" +#include "sqlbison.hxx" #include "QueryTableView.hxx" #include "browserids.hxx" #include <comphelper/extract.hxx> |