summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-08-14 18:15:51 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-15 06:54:11 +0000
commit3093732c17d14b0e6eb67868c514448f13bc66d0 (patch)
treec6d61c88e1ded2579469f569b6d5b4d261b9dc8f /basic
parentf8f68042597cd38b8dab7413baadb093c4a01a00 (diff)
basic: SbxBase should be abstract
Change-Id: Ief4297e5c64cfb29645463aca3cc677dc06fc95a Reviewed-on: https://gerrit.libreoffice.org/28112 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxbase.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/basic/source/sbx/sbxbase.cxx b/basic/source/sbx/sbxbase.cxx
index 615708328180..f1f95181096c 100644
--- a/basic/source/sbx/sbxbase.cxx
+++ b/basic/source/sbx/sbxbase.cxx
@@ -78,10 +78,6 @@ SbxClassType SbxBase::GetClass() const
return SbxClassType::DontCare;
}
-void SbxBase::Clear()
-{
-}
-
bool SbxBase::IsFixed() const
{
return IsSet( SbxFlagBits::Fixed );
@@ -268,16 +264,6 @@ bool SbxBase::Store( SvStream& rStrm )
return true;
}
-bool SbxBase::LoadData( SvStream&, sal_uInt16 )
-{
- return false;
-}
-
-bool SbxBase::StoreData( SvStream& ) const
-{
- return false;
-}
-
bool SbxBase::LoadCompleted()
{
return true;