summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-24 13:44:18 +0200
committerCaolán McNamara <caolanm@redhat.com>2017-01-24 15:56:31 +0000
commitc5df32e5cb6ef9727e566541d6cf29dbd5c32602 (patch)
treef48f227f44728bf23a5d686730b1df7e45d37fba /linguistic
parentd92b12604b644195328b89cb9355cd4fc4bc3e2d (diff)
loplugin: unnecessary destructor jvmfwk..lotuswordpro
Change-Id: Iaa4f9b178ab265342255066af7fff09f5b33ab37 Reviewed-on: https://gerrit.libreoffice.org/33496 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/inc/iprcache.hxx1
-rw-r--r--linguistic/source/convdicxml.hxx7
-rw-r--r--linguistic/source/misc.cxx5
3 files changed, 0 insertions, 13 deletions
diff --git a/linguistic/inc/iprcache.hxx b/linguistic/inc/iprcache.hxx
index b311511f8f11..390ceda80d9f 100644
--- a/linguistic/inc/iprcache.hxx
+++ b/linguistic/inc/iprcache.hxx
@@ -58,7 +58,6 @@ class FlushListener :
public:
FlushListener( SpellCache& rFO ) : mrSpellCache(rFO) {}
- virtual ~FlushListener() override {}
void SetDicList( css::uno::Reference< css::linguistic2::XSearchableDictionaryList > &rDL );
void SetPropSet( css::uno::Reference< css::linguistic2::XLinguProperties > &rPS );
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx
index c490fb71572b..3dd3182fcbe5 100644
--- a/linguistic/source/convdicxml.hxx
+++ b/linguistic/source/convdicxml.hxx
@@ -52,9 +52,6 @@ public:
bSuccess ( false )
{
}
- virtual ~ConvDicXMLExport() override
- {
- }
// SvXMLExport
void ExportAutoStyles_() override {}
@@ -89,10 +86,6 @@ public:
nConversionType = -1;
}
- virtual ~ConvDicXMLImport() throw () override
- {
- }
-
virtual void SAL_CALL startDocument() throw( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
virtual SvXMLImportContext * CreateContext(
diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx
index 4ceb55b16bcb..b8a3e7f6b507 100644
--- a/linguistic/source/misc.cxx
+++ b/linguistic/source/misc.cxx
@@ -129,7 +129,6 @@ private:
public:
IntArray2D( int nDim1, int nDim2 );
- ~IntArray2D();
sal_Int32 & Value( int i, int k );
};
@@ -141,10 +140,6 @@ IntArray2D::IntArray2D( int nDim1, int nDim2 )
pData.reset( new sal_Int32[n1 * n2] );
}
-IntArray2D::~IntArray2D()
-{
-}
-
sal_Int32 & IntArray2D::Value( int i, int k )
{
assert( (0 <= i && i < n1) && "first index out of range" );