summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 14:03:54 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:56 +0200
commit3fc7f4c582c04a11bbd6ebede8e8bdc99f3b2034 (patch)
treeadee3f9d3bef6cddf7039d4eada4e4028a65c19e /svl
parent9e6b501833d4e45ba0239d1adf4911f140304569 (diff)
svx,starmath: inline some use-once typedefs
Change-Id: I5a7405d326b7258cbed476c30f88e57559b4cc8e
Diffstat (limited to 'svl')
-rw-r--r--svl/source/inc/poolio.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx
index ca51c49ee605..ef8640bea32a 100644
--- a/svl/source/inc/poolio.hxx
+++ b/svl/source/inc/poolio.hxx
@@ -61,7 +61,6 @@ struct SfxPoolVersion_Impl
typedef std::vector<SfxPoolItem*> SfxPoolItemArrayBase_Impl;
typedef boost::shared_ptr< SfxPoolVersion_Impl > SfxPoolVersion_ImplPtr;
-typedef std::deque< SfxPoolVersion_ImplPtr > SfxPoolVersionArr_Impl;
/**
* This array contains a set of SfxPoolItems, if those items are
@@ -90,14 +89,14 @@ struct SfxItemPool_Impl
{
SfxBroadcaster aBC;
std::vector<SfxPoolItemArray_Impl*> maPoolItems;
- std::vector<SfxItemPoolUser*> maSfxItemPoolUsers; /// ObjectUser section
+ std::vector<SfxItemPoolUser*> maSfxItemPoolUsers; /// ObjectUser section
OUString aName;
SfxPoolItem** ppPoolDefaults;
SfxPoolItem** ppStaticDefaults;
SfxItemPool* mpMaster;
SfxItemPool* mpSecondary;
sal_uInt16* mpPoolRanges;
- SfxPoolVersionArr_Impl aVersions;
+ std::deque< SfxPoolVersion_ImplPtr > aVersions;
sal_uInt16 mnStart;
sal_uInt16 mnEnd;
sal_uInt16 mnFileFormatVersion;