diff options
author | August Sodora <augsod@gmail.com> | 2012-01-20 01:23:16 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-20 13:47:58 -0500 |
commit | ee0d6e3ab040ddd2ce1cd73945ee44da69201ca4 (patch) | |
tree | f59d86ce7b0a27b0fc68b92dbcdebf28d4f28fe5 /sfx2/inc | |
parent | 33e9d339224f2443bc5a69af814a0311d5a2ec7b (diff) |
DECL_PTRARRAY->std::vector
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/msgpool.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/inc/sfx2/msgpool.hxx b/sfx2/inc/sfx2/msgpool.hxx index 0c7eab1fe453..35d4be615e98 100644 --- a/sfx2/inc/sfx2/msgpool.hxx +++ b/sfx2/inc/sfx2/msgpool.hxx @@ -40,9 +40,10 @@ class SfxInterface; class SfxSlot; -class SfxSlotTypeArr_Impl; +class SfxSlotType_Impl; typedef std::basic_string< sal_uInt16 > SfxSlotGroupArr_Impl; +typedef std::vector<SfxSlotType_Impl*> SfxSlotTypeArr_Impl; typedef std::vector<SfxInterface*> SfxInterfaceArr_Impl; class SFX2_DLLPUBLIC SfxSlotPool |