diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-25 12:13:32 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-25 15:03:46 -0400 |
commit | bb6d9b0123dcde32fe260f6d1c3e567d1ddfcb35 (patch) | |
tree | 9253edc8f67eb2e76fc25ca8938dc9210001a6f7 /include/basic | |
parent | 54c6f08c2061f1af1a545e6b50d447f14b806057 (diff) |
Remove this class that only derives from std::vector and not much else.
Change-Id: Ibc584f4148cec49a9ac34a240cc2fa3e87daf443
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/sbx.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index c642e121e22a..55022a80323d 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -115,17 +115,19 @@ public: // The variables convert from SbxVariablen. Put()/Insert() into the // declared datatype, if they are not SbxVARIANT. -class SbxVarRefs; +class 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 ); - SbxVarRefs* pData; // The variables + VarEntriesType* pData; // The variables protected: SbxDataType eType; // Data type of the array |