diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-04 11:28:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-04 12:14:09 +0100 |
commit | 22cea99518af0358ddabab95f68fedcb94a7d923 (patch) | |
tree | 841b84297c61b2d872daea7af50efb0071bfb664 /include/xmloff/xmlimp.hxx | |
parent | f6a258948ae03311746699d23b03a1d7e2d235eb (diff) |
this is used as a stack, so convert to std::stack
Change-Id: I248617ccbb985615f936ecd607ab7c8246ff8e71
Diffstat (limited to 'include/xmloff/xmlimp.hxx')
-rw-r--r-- | include/xmloff/xmlimp.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx index 93c5f250db9d..07168bcf0b54 100644 --- a/include/xmloff/xmlimp.hxx +++ b/include/xmloff/xmlimp.hxx @@ -23,6 +23,7 @@ #include <sal/config.h> #include <set> +#include <stack> #include <xmloff/dllapi.h> #include <sal/types.h> @@ -85,8 +86,8 @@ class XMLErrors; class StyleMap; enum class SvXMLErrorFlags; -typedef std::vector<SvXMLImportContextRef> SvXMLImportContexts_Impl; -typedef std::vector< ::css::uno::Reference< ::css::xml::sax::XFastContextHandler>> +typedef std::stack<SvXMLImportContextRef> SvXMLImportContexts_Impl; +typedef std::stack<css::uno::Reference<css::xml::sax::XFastContextHandler>> FastSvXMLImportContexts_Impl; namespace xmloff { |