diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-09 15:47:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-10 12:56:14 +0100 |
commit | 32823280efffc02a250fc8d4749b8eb0f491ae77 (patch) | |
tree | d53b384498f6ba4c40b3449205eda96d45fc7c1e /dbaccess | |
parent | 617fb9eed92711639e4e632132a649f23ac2f3eb (diff) |
loplugin:unusedmethods
Change-Id: I543b0943f0bc918d59debc8ee051f88c29d18454
Reviewed-on: https://gerrit.libreoffice.org/44553
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/inc/DExport.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/HtmlReader.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/RtfReader.hxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/misc/HtmlReader.cxx | 5 | ||||
-rw-r--r-- | dbaccess/source/ui/misc/RtfReader.cxx | 5 |
5 files changed, 0 insertions, 17 deletions
diff --git a/dbaccess/source/ui/inc/DExport.hxx b/dbaccess/source/ui/inc/DExport.hxx index 99c0c8053270..40a7a15431ef 100644 --- a/dbaccess/source/ui/inc/DExport.hxx +++ b/dbaccess/source/ui/inc/DExport.hxx @@ -156,8 +156,6 @@ namespace dbaui void SetTableName(const OUString &_sTableName){ m_sDefaultTableName = _sTableName ; } - virtual void release() = 0; - void enableCheckOnly() { m_bCheckOnly = true; } bool isCheckEnabled() const { return m_bCheckOnly; } diff --git a/dbaccess/source/ui/inc/HtmlReader.hxx b/dbaccess/source/ui/inc/HtmlReader.hxx index 3420042f5089..375d04a9803a 100644 --- a/dbaccess/source/ui/inc/HtmlReader.hxx +++ b/dbaccess/source/ui/inc/HtmlReader.hxx @@ -63,8 +63,6 @@ namespace dbaui bool _bAutoIncrementEnabled); virtual SvParserState CallParser() override;// base class - virtual void release() override; - ///< @attention recovers only valid data if 1. CTOR has been used }; typedef tools::SvRef<OHTMLReader> OHTMLReaderRef; diff --git a/dbaccess/source/ui/inc/RtfReader.hxx b/dbaccess/source/ui/inc/RtfReader.hxx index 3e9c3badd2d9..9c380d1edd77 100644 --- a/dbaccess/source/ui/inc/RtfReader.hxx +++ b/dbaccess/source/ui/inc/RtfReader.hxx @@ -54,9 +54,6 @@ namespace dbaui bool _bAutoIncrementEnabled); virtual SvParserState CallParser() override;// base class - /// @note Only recovers correct data if 2. CTOR has been used. - /// Otherwise, the SbaColumnList will be returned without changes - virtual void release() override; }; typedef tools::SvRef<ORTFReader> ORTFReaderRef; diff --git a/dbaccess/source/ui/misc/HtmlReader.cxx b/dbaccess/source/ui/misc/HtmlReader.cxx index 176f9eeab172..9493af953f17 100644 --- a/dbaccess/source/ui/misc/HtmlReader.cxx +++ b/dbaccess/source/ui/misc/HtmlReader.cxx @@ -503,11 +503,6 @@ void OHTMLReader::setTextEncoding() ParseMetaOptions(nullptr, nullptr); } -void OHTMLReader::release() -{ - ReleaseRef(); -} - TypeSelectionPageFactory OHTMLReader::getTypeSelectionPageFactory() { return &OWizHTMLExtend::Create; diff --git a/dbaccess/source/ui/misc/RtfReader.cxx b/dbaccess/source/ui/misc/RtfReader.cxx index 1153352764fa..86cc730bd126 100644 --- a/dbaccess/source/ui/misc/RtfReader.cxx +++ b/dbaccess/source/ui/misc/RtfReader.cxx @@ -323,11 +323,6 @@ bool ORTFReader::CreateTable(int nToken) return bOk; } -void ORTFReader::release() -{ - ReleaseRef(); -} - TypeSelectionPageFactory ORTFReader::getTypeSelectionPageFactory() { return &OWizRTFExtend::Create; |