diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2016-01-16 14:43:53 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-01-16 17:08:46 +0000 |
commit | 3a97b3619a247fdcc873f0871288176188e005b4 (patch) | |
tree | aa0b4e3346351848ba4359d1d727efa2cf58a424 /basic | |
parent | cb71841a31404fdbe4df76d9473ee73c2fa8554b (diff) |
BASIC : Remove useless virtual function override
Change-Id: I0f8e480bf73256e7f1284e11983cc70c0426172c
Reviewed-on: https://gerrit.libreoffice.org/21513
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/sb.cxx | 6 | ||||
-rw-r--r-- | basic/source/inc/sbunoobj.hxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/basic/source/classes/sb.cxx b/basic/source/classes/sb.cxx index a6118ea3ea4e..ddcc8d02e40c 100644 --- a/basic/source/classes/sb.cxx +++ b/basic/source/classes/sb.cxx @@ -2068,12 +2068,6 @@ void BasicCollection::Initialize() } } -SbxVariable* BasicCollection::Find( const OUString& rName, SbxClassType t ) -{ - SbxVariable* pFind = SbxObject::Find( rName, t ); - return pFind; -} - void BasicCollection::Notify( SfxBroadcaster& rCst, const SfxHint& rHint ) { const SbxHint* p = dynamic_cast<const SbxHint*>(&rHint); diff --git a/basic/source/inc/sbunoobj.hxx b/basic/source/inc/sbunoobj.hxx index f2bd5d5b4ff4..e7447ff48594 100644 --- a/basic/source/inc/sbunoobj.hxx +++ b/basic/source/inc/sbunoobj.hxx @@ -365,7 +365,6 @@ class BasicCollection : public SbxObject public: BasicCollection( const OUString& rClassname ); - virtual SbxVariable* Find( const OUString&, SbxClassType ) override; virtual void Clear() override; }; |