diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2016-08-15 15:51:18 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-16 06:42:36 +0000 |
commit | 93de7661211d19f6fff201bff5625413a453258d (patch) | |
tree | 3dacf7bcc18de17bcd71ea8e53a53cebcdd63193 /include | |
parent | 127f70d66ac32b7a4ec818adaf1bdccb71865ee5 (diff) |
basic: Simplify SbxArray
Change-Id: Idcc1e35d0a1d80591e2cebdae37a70cf029b022e
Reviewed-on: https://gerrit.libreoffice.org/28147
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/basic/sbx.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index e304e0912551..59b95aa5218f 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -118,15 +118,13 @@ struct SbxVarEntry; class BASIC_DLLPUBLIC SbxArray : public SbxBase { - typedef std::vector<SbxVarEntry> VarEntriesType; - // #100883 Method to set method directly to parameter array friend class SbMethod; friend class SbClassModuleObject; friend SbxObject* cloneTypeObjectImpl( const SbxObject& rTypeObj ); BASIC_DLLPRIVATE void PutDirect( SbxVariable* pVar, sal_uInt32 nIdx ); - VarEntriesType* mpVarEntries; // The variables + std::vector<SbxVarEntry> mVarEntries; // The variables protected: SbxDataType eType; // Data type of the array |