From a1a25f4c6c99c0c519cc60d842041d56ae8a6f1c Mon Sep 17 00:00:00 2001 From: Matthew Nicholls Date: Sun, 19 Apr 2015 17:12:43 +0100 Subject: 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 Reviewed-by: David Tardon --- sc/source/ui/docshell/docsh8.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sc/source/ui/docshell/docsh8.cxx') diff --git a/sc/source/ui/docshell/docsh8.cxx b/sc/source/ui/docshell/docsh8.cxx index 193f50498d6f..c78021f26bf5 100644 --- a/sc/source/ui/docshell/docsh8.cxx +++ b/sc/source/ui/docshell/docsh8.cxx @@ -122,9 +122,8 @@ namespace OUString aConnUrl("sdbc:dbase:"); aConnUrl += aPath; - svxform::ODataAccessCharsetHelper aHelper; ::std::vector< rtl_TextEncoding > aEncodings; - aHelper.getSupportedTextEncodings( aEncodings ); + svxform::charset_helper::getSupportedTextEncodings( aEncodings ); ::std::vector< rtl_TextEncoding >::iterator aIter = ::std::find(aEncodings.begin(),aEncodings.end(),(rtl_TextEncoding) eCharSet); if ( aIter == aEncodings.end() ) { -- cgit v1.2.3