summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-28 10:01:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-28 13:01:12 +0200
commit149a4d756699f4275f9f84807e72526e73aed1b2 (patch)
tree5a5251e773b74d5147e677f962a07d1c32bb088c /sc/source/filter
parent7f7653c11b4312e89b7ad3cc0e5fb0b6a9b94c5d (diff)
loplugin:virtualdown in sc..sd
Change-Id: If93dc12f484839e6d2b44d6568b506f0c15b4735 Reviewed-on: https://gerrit.libreoffice.org/51989 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/excel/impop.cxx5
-rw-r--r--sc/source/filter/inc/imp_op.hxx4
-rw-r--r--sc/source/filter/inc/lotimpop.hxx2
3 files changed, 2 insertions, 9 deletions
diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx
index 136904fa87c4..90616ce57d2a 100644
--- a/sc/source/filter/excel/impop.cxx
+++ b/sc/source/filter/excel/impop.cxx
@@ -99,11 +99,6 @@ ImportTyp::~ImportTyp()
{
}
-ErrCode ImportTyp::Read()
-{
- return SCERR_IMPORT_INTERNAL;
-}
-
ImportExcel::ImportExcel( XclImpRootData& rImpData, SvStream& rStrm ):
ImportTyp( &rImpData.mrDoc, rImpData.meTextEnc ),
XclImpRoot( rImpData ),
diff --git a/sc/source/filter/inc/imp_op.hxx b/sc/source/filter/inc/imp_op.hxx
index a386ecc67389..2d4bdf0e678f 100644
--- a/sc/source/filter/inc/imp_op.hxx
+++ b/sc/source/filter/inc/imp_op.hxx
@@ -51,8 +51,6 @@ protected:
public:
ImportTyp( ScDocument*, rtl_TextEncoding eSrc );
virtual ~ImportTyp();
-
- virtual ErrCode Read();
};
class XclImpOutlineDataBuffer : protected XclImpRoot
@@ -201,7 +199,7 @@ public:
virtual ~ImportExcel() override;
- virtual ErrCode Read() override;
+ virtual ErrCode Read();
};
#endif
diff --git a/sc/source/filter/inc/lotimpop.hxx b/sc/source/filter/inc/lotimpop.hxx
index 17fca962caf6..0b3dc6122547 100644
--- a/sc/source/filter/inc/lotimpop.hxx
+++ b/sc/source/filter/inc/lotimpop.hxx
@@ -80,7 +80,7 @@ public:
virtual ~ImportLotus() override;
ErrCode parse(); //parse + CalcAfterLoad
- ErrCode Read() override;
+ virtual ErrCode Read();
ErrCode Read( SvStream& ); // special for *.fm3 files
};