summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-08-15 15:51:18 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-16 06:42:36 +0000
commit93de7661211d19f6fff201bff5625413a453258d (patch)
tree3dacf7bcc18de17bcd71ea8e53a53cebcdd63193 /include
parentnew loplugin to check for static OUStrings (diff)
downloadcore-93de7661211d19f6fff201bff5625413a453258d.tar.gz
core-93de7661211d19f6fff201bff5625413a453258d.zip
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.hxx4
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