summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-11-11 10:06:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-11-11 12:05:41 +0100
commitf9333f9d47eb8906b4ef74cbb0a09cf1a9a5f2e6 (patch)
treea507027269bbb17d3b1ffc3c3fd89fe580ac638c /sc/inc
parenttdf#112627: Set 'Master Slide' when Context is changed (diff)
downloadcore-f9333f9d47eb8906b4ef74cbb0a09cf1a9a5f2e6.tar.gz
core-f9333f9d47eb8906b4ef74cbb0a09cf1a9a5f2e6.zip
Replace list by vector in scmod (sc)
Change-Id: I5171de5a13861d36d30f8489b7d83768e8c2ac25 Reviewed-on: https://gerrit.libreoffice.org/44622 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/scmod.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx
index a5acf50dc2de..78a433e7d511 100644
--- a/sc/inc/scmod.hxx
+++ b/sc/inc/scmod.hxx
@@ -30,7 +30,7 @@
#include <unotools/options.hxx>
#include <algorithm>
-#include <list>
+#include <vector>
#include <map>
#include <memory>
#include <stack>
@@ -107,7 +107,7 @@ class ScModule: public SfxModule, public SfxListener, public utl::ConfigurationL
bool mbIsInSharedDocLoading:1;
bool mbIsInSharedDocSaving:1;
- std::map<sal_uInt16, std::list<VclPtr<vcl::Window> > > m_mapRefWindow;
+ std::map<sal_uInt16, std::vector<VclPtr<vcl::Window> > > m_mapRefWindow;
public:
SFX_DECL_INTERFACE(SCID_APP)