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 /svx/source/dialog/txencbox.cxx | |
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 'svx/source/dialog/txencbox.cxx')
-rw-r--r-- | svx/source/dialog/txencbox.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/dialog/txencbox.cxx b/svx/source/dialog/txencbox.cxx index 1f453d57f5d2..f9cf52f232be 100644 --- a/svx/source/dialog/txencbox.cxx +++ b/svx/source/dialog/txencbox.cxx @@ -138,9 +138,8 @@ void SvxTextEncodingBox::FillFromDbTextEncodingMap( #else rtl_TextEncodingInfo aInfo; aInfo.StructSize = sizeof(rtl_TextEncodingInfo); - svxform::ODataAccessCharsetHelper aCSH; ::std::vector< rtl_TextEncoding > aEncs; - sal_Int32 nCount = aCSH.getSupportedTextEncodings( aEncs ); + sal_Int32 nCount = svxform::charset_helper::getSupportedTextEncodings( aEncs ); for ( sal_Int32 j=0; j<nCount; j++ ) { bool bInsert = true; |