diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 15:13:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-04 08:55:56 +0200 |
commit | 50097a8bb2be903d8a985f6f03f364567bf4643d (patch) | |
tree | d4d47f9832766b4a07b5b97a3a5dfcbc93d96a91 /basic/source/inc | |
parent | 3ff2e30ff671aa43891968d21aa2e17774e47baf (diff) |
basic,basctl: inline some use-once typedefs
Change-Id: I60619a5bfe9507fb5ed24123f62f6b5c2f2c8712
Diffstat (limited to 'basic/source/inc')
-rw-r--r-- | basic/source/inc/propacc.hxx | 4 | ||||
-rw-r--r-- | basic/source/inc/symtbl.hxx | 11 |
2 files changed, 6 insertions, 9 deletions
diff --git a/basic/source/inc/propacc.hxx b/basic/source/inc/propacc.hxx index a74d2b226c0a..d10cf79014c4 100644 --- a/basic/source/inc/propacc.hxx +++ b/basic/source/inc/propacc.hxx @@ -86,8 +86,6 @@ public: -typedef ::cppu::WeakImplHelper< css::beans::XPropertySetInfo > SbPropertySetInfoHelper; - // AB 20.3.2000 Help Class for XPropertySetInfo implementation class PropertySetInfoImpl { @@ -109,7 +107,7 @@ public: throw ( css::uno::RuntimeException ); }; -class SbPropertySetInfo: public SbPropertySetInfoHelper +class SbPropertySetInfo: public ::cppu::WeakImplHelper< css::beans::XPropertySetInfo > { PropertySetInfoImpl aImpl; 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: |