summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc/fltshell.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-08-16 17:05:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-08-16 22:17:57 +0200
commit8efdce75d96819d42bae2104169b74d67677c32e (patch)
treeb4ec2985c29ff276e56746fe48c3278c5f4b6c73 /sw/source/filter/inc/fltshell.hxx
parent3cd264bb09c6c14bf9eb769d508d7015c4bdc83b (diff)
std::deque->std::vector
Change-Id: Ia454ec1853bde1a19c6daafe5fef11bb633db080 Reviewed-on: https://gerrit.libreoffice.org/59211 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/filter/inc/fltshell.hxx')
-rw-r--r--sw/source/filter/inc/fltshell.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/inc/fltshell.hxx b/sw/source/filter/inc/fltshell.hxx
index 9a84dccaa3f3..3b84675a9a30 100644
--- a/sw/source/filter/inc/fltshell.hxx
+++ b/sw/source/filter/inc/fltshell.hxx
@@ -124,7 +124,7 @@ private:
SwFltControlStack(SwFltControlStack const&) = delete;
SwFltControlStack& operator=(SwFltControlStack const&) = delete;
- typedef std::deque<std::unique_ptr<SwFltStackEntry>> Entries;
+ typedef std::vector<std::unique_ptr<SwFltStackEntry>> Entries;
Entries m_Entries;
sal_uLong nFieldFlags;