summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-15 20:16:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-16 08:34:03 +0200
commitf173aa0a86d86ddfa42ee03b5973495eb595c1fc (patch)
treec99e6f83eeb224d3010d1aaf5b83e1347e216c82 /dbaccess
parent39ec20cd90164089cb2b9a89e1b7d64a1c12822a (diff)
loplugin:unusedmethods
Change-Id: Ibc1ec64cba8eb083aaff28848a42337cc597ea19 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98857 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/filter/xml/xmlExport.hxx10
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.cxx12
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.hxx7
3 files changed, 0 insertions, 29 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.hxx b/dbaccess/source/filter/xml/xmlExport.hxx
index 337163f648db..118e3ac94cfa 100644
--- a/dbaccess/source/filter/xml/xmlExport.hxx
+++ b/dbaccess/source/filter/xml/xmlExport.hxx
@@ -164,16 +164,6 @@ public:
ODBExport(const Reference< XComponentContext >& _rxContext, OUString const & implementationName, SvXMLExportFlags nExportFlag = SvXMLExportFlags::CONTENT | SvXMLExportFlags::AUTOSTYLES | SvXMLExportFlags::PRETTY | SvXMLExportFlags::FONTDECLS | SvXMLExportFlags::SCRIPTS );
- /// @throws css::uno::RuntimeException
- static OUString getImplementationName_Static();
-
- /// @throws css::uno::RuntimeException
- static css::uno::Sequence<OUString>
- getSupportedServiceNames_Static();
-
- static css::uno::Reference<css::uno::XInterface> Create(
- css::uno::Reference<css::lang::XMultiServiceFactory> const & _rxORB);
-
rtl::Reference < XMLPropertySetMapper > const & GetColumnStylesPropertySetMapper() const;
rtl::Reference < XMLPropertySetMapper > const & GetCellStylesPropertySetMapper() const;
diff --git a/dbaccess/source/filter/xml/xmlfilter.cxx b/dbaccess/source/filter/xml/xmlfilter.cxx
index bafe618bacc9..bcf498e8c16e 100644
--- a/dbaccess/source/filter/xml/xmlfilter.cxx
+++ b/dbaccess/source/filter/xml/xmlfilter.cxx
@@ -201,18 +201,6 @@ OUString ODBFilter::getImplementationName_Static()
}
-css::uno::Sequence<OUString> ODBFilter::getSupportedServiceNames_Static()
-{
- return { "com.sun.star.document.ImportFilter" };
-}
-
-
-css::uno::Reference< css::uno::XInterface >
- ODBFilter::Create(const css::uno::Reference< css::lang::XMultiServiceFactory >& _rxORB)
-{
- return static_cast< XServiceInfo* >(new ODBFilter( comphelper::getComponentContext(_rxORB)));
-}
-
namespace {
class FocusWindowWaitGuard
{
diff --git a/dbaccess/source/filter/xml/xmlfilter.hxx b/dbaccess/source/filter/xml/xmlfilter.hxx
index 983b7da5f6bf..9e5e3965ec37 100644
--- a/dbaccess/source/filter/xml/xmlfilter.hxx
+++ b/dbaccess/source/filter/xml/xmlfilter.hxx
@@ -92,13 +92,6 @@ public:
/// @throws css::uno::RuntimeException
static OUString getImplementationName_Static();
- /// @throws css::uno::RuntimeException
- static css::uno::Sequence<OUString>
- getSupportedServiceNames_Static();
-
- static css::uno::Reference<css::uno::XInterface> Create(
- css::uno::Reference<css::lang::XMultiServiceFactory> const & _rxORB);
-
// helper class
virtual void SetViewSettings(const css::uno::Sequence<css::beans::PropertyValue>& aViewProps) override;
virtual void SetConfigurationSettings(const css::uno::Sequence<css::beans::PropertyValue>& aConfigProps) override;