diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 12:34:22 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-03 12:16:33 +0000 |
commit | a4fd6c4f9e5b010f00ba7cc84a4b2d5d8950813a (patch) | |
tree | 6b2aa80c50d3937cfe17053a5da48f19855dcb68 /xmloff/source/draw/sdxmlimp_impl.hxx | |
parent | 5256953397b495e9271cec92cc78514d772acaf5 (diff) |
inline some use-once typedefs
Change-Id: I02cbbba56a2ad83e0ac3d806265a7e0d6a29594d
Reviewed-on: https://gerrit.libreoffice.org/17495
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/draw/sdxmlimp_impl.hxx')
-rw-r--r-- | xmloff/source/draw/sdxmlimp_impl.hxx | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/xmloff/source/draw/sdxmlimp_impl.hxx b/xmloff/source/draw/sdxmlimp_impl.hxx index 1f21426bbfbd..8088a5fc2756 100644 --- a/xmloff/source/draw/sdxmlimp_impl.hxx +++ b/xmloff/source/draw/sdxmlimp_impl.hxx @@ -151,8 +151,6 @@ struct SdXMLltXDrawPageId } }; -typedef std::map< sal_Int32, com::sun::star::uno::Reference< com::sun::star::drawing::XDrawPage >, SdXMLltXDrawPageId > DrawPageIdMap; - class SvXMLUnitConverter; class SvXMLTokenMap; class SdXMLMasterStylesContext; @@ -194,14 +192,15 @@ class SdXMLImport: public SvXMLImport sal_Int32 mnNewPageCount; sal_Int32 mnNewMasterPageCount; - bool mbIsDraw; - bool mbLoadDoc; - bool mbPreview; + bool mbIsDraw; + bool mbLoadDoc; + bool mbPreview; - DrawPageIdMap maDrawPageIds; + std::map< sal_Int32, com::sun::star::uno::Reference< com::sun::star::drawing::XDrawPage >, SdXMLltXDrawPageId > + maDrawPageIds; - OUString msPageLayouts; - OUString msPreview; + OUString msPageLayouts; + OUString msPreview; HeaderFooterDeclMap maHeaderDeclsMap; HeaderFooterDeclMap maFooterDeclsMap; |