summaryrefslogtreecommitdiff
path: root/basic/source/inc/symtbl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 15:13:20 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:56 +0200
commit50097a8bb2be903d8a985f6f03f364567bf4643d (patch)
treed4d47f9832766b4a07b5b97a3a5dfcbc93d96a91 /basic/source/inc/symtbl.hxx
parent3ff2e30ff671aa43891968d21aa2e17774e47baf (diff)
basic,basctl: inline some use-once typedefs
Change-Id: I60619a5bfe9507fb5ed24123f62f6b5c2f2c8712
Diffstat (limited to 'basic/source/inc/symtbl.hxx')
-rw-r--r--basic/source/inc/symtbl.hxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx
index bb8d1b7a8a91..2682eee31d19 100644
--- a/basic/source/inc/symtbl.hxx
+++ b/basic/source/inc/symtbl.hxx
@@ -49,17 +49,16 @@ public:
};
-typedef boost::ptr_vector<SbiSymDef> SbiSymbols;
-
class SbiSymPool {
friend class SbiSymDef;
friend class SbiProcDef;
protected:
SbiStringPool& rStrings;
- SbiSymbols aData;
- SbiSymPool* pParent;
- SbiParser* pParser;
- SbiSymScope eScope;
+ boost::ptr_vector<SbiSymDef>
+ aData;
+ SbiSymPool* pParent;
+ SbiParser* pParser;
+ SbiSymScope eScope;
sal_uInt16 nProcId; // for STATIC-variable
sal_uInt16 nCur; // iterator
public: