summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-12-04 23:35:01 +0200
committerTor Lillqvist <tml@collabora.com>2017-12-05 11:55:00 +0100
commit2b26d152227b39f8dd78db56a10817a4b3c7c259 (patch)
tree55925b9a82bdb810345e3b8fffa4c69b6c68cb28 /xmloff
parent9984b3488f04ab372fe0b308c969eca6ebec460f (diff)
Bin a typedef used just once
Change-Id: I8591b1d872a729402ea6045d2a17dc691fa66788 Reviewed-on: https://gerrit.libreoffice.org/45841 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlstyle.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/xmloff/source/style/xmlstyle.cxx b/xmloff/source/style/xmlstyle.cxx
index 8fc93bb12e10..262dce7f32a3 100644
--- a/xmloff/source/style/xmlstyle.cxx
+++ b/xmloff/source/style/xmlstyle.cxx
@@ -235,10 +235,9 @@ struct SvXMLStyleIndexCmp_Impl
class SvXMLStylesContext_Impl
{
- typedef std::vector<rtl::Reference<SvXMLStyleContext>> StylesType;
typedef std::set<SvXMLStyleIndex_Impl, SvXMLStyleIndexCmp_Impl> IndicesType;
- StylesType aStyles;
+ std::vector<rtl::Reference<SvXMLStyleContext>> aStyles;
mutable std::unique_ptr<IndicesType> pIndices;
bool bAutomaticStyle;