diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-23 08:57:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-23 10:13:24 +0200 |
commit | e85d92a874524f677493dda5785be11ca6e99f17 (patch) | |
tree | a8762055324d46f4329180672fb527ead201065d /svl/source/inc | |
parent | 373b44a2fcbe78e8a3ff14cd410826af151a6adf (diff) |
Revert "Revert "remove SfxPoolItemArrayBase_Impl typedef""
This reverts commit b0eecd2d3ba4a1a424a2d52cccf64fe6fc09c34b.
Now that the necessary parent commits are in, we can re-apply this.
Diffstat (limited to 'svl/source/inc')
-rw-r--r-- | svl/source/inc/poolio.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx index 0dd561e30346..75ba7334079c 100644 --- a/svl/source/inc/poolio.hxx +++ b/svl/source/inc/poolio.hxx @@ -58,8 +58,6 @@ struct SfxPoolVersion_Impl {} }; -typedef std::vector<SfxPoolItem*> SfxPoolItemArrayBase_Impl; - typedef std::shared_ptr< SfxPoolVersion_Impl > SfxPoolVersion_ImplPtr; /** @@ -121,7 +119,7 @@ struct SfxItemPool_Impl bool mbPersistentRefCounts; SfxItemPool_Impl( SfxItemPool* pMaster, const OUString& rName, sal_uInt16 nStart, sal_uInt16 nEnd ) - : maPoolItems(nEnd - nStart + 1, static_cast<SfxPoolItemArray_Impl*>(nullptr)) + : maPoolItems(nEnd - nStart + 1) , aName(rName) , maPoolDefaults(nEnd - nStart + 1) , ppStaticDefaults(nullptr) |