summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-12-04 23:35:01 +0200
committerAndras Timar <andras.timar@collabora.com>2018-03-19 14:56:04 +0100
commit4c603ec47b092f847d4ff4d382fb3ec656c12202 (patch)
treead47bb63f84008ef6567ad2b813d9cbb0308b2db /xmloff
parent4dbc18c370da9a949de351c239411c7142cc54e3 (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> (cherry picked from commit 2b26d152227b39f8dd78db56a10817a4b3c7c259)
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;