diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2016-07-16 21:49:06 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-18 07:03:43 +0000 |
commit | ee2ad513de94ac395fd6be6f28c5202745ea7a2a (patch) | |
tree | b04a9fc0e9d28f793bd504d76162ac60644237b6 /basic/source | |
parent | 76ad32bec8e2c00c21247041b16d9e09e73d2504 (diff) |
BASIC: Remove useless overrides
Change-Id: I49eb680bb0945a65a98978e98750fd62669fd820
Reviewed-on: https://gerrit.libreoffice.org/27255
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/runtime/stdobj1.cxx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/basic/source/runtime/stdobj1.cxx b/basic/source/runtime/stdobj1.cxx index e06c99d6d685..5c2e6e071983 100644 --- a/basic/source/runtime/stdobj1.cxx +++ b/basic/source/runtime/stdobj1.cxx @@ -127,13 +127,6 @@ SbStdPicture::~SbStdPicture() } -SbxVariable* SbStdPicture::Find( const OUString& rName, SbxClassType t ) -{ - // entered already? - return SbxObject::Find( rName, t ); -} - - void SbStdPicture::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) { @@ -253,11 +246,6 @@ SbStdFont::~SbStdFont() { } -SbxVariable* SbStdFont::Find( const OUString& rName, SbxClassType t ) -{ - return SbxObject::Find( rName, t ); -} - void SbStdFont::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) { const SbxHint* pHint = dynamic_cast<const SbxHint*>(&rHint); @@ -413,13 +401,6 @@ SbStdClipboard::~SbStdClipboard() { } - -SbxVariable* SbStdClipboard::Find( const OUString& rName, SbxClassType t ) -{ - return SbxObject::Find( rName, t ); -} - - void SbStdClipboard::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) { const SbxHint* pHint = dynamic_cast<const SbxHint*>(&rHint); |