diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-11-02 21:50:30 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-11-03 07:15:41 +0100 |
commit | 526c8f7240812f857d54dc23398ee7845b0be36d (patch) | |
tree | 86c2b0c28f28a68b4a32706531c86fac4623c17b /vcl/inc | |
parent | b80403167935550a4dd97f31b79d2bdcb97e4e88 (diff) |
Replace some lists by vectors (vcl)
Change-Id: Ic31f4f5a2f44e39ee965e7c3fc6a2246bbb10076
Reviewed-on: https://gerrit.libreoffice.org/44237
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/svdata.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx index ad09439f60e1..cf5433483c7a 100644 --- a/vcl/inc/svdata.hxx +++ b/vcl/inc/svdata.hxx @@ -35,7 +35,7 @@ #include "salwtype.hxx" #include "displayconnectiondispatch.hxx" -#include <list> +#include <vector> #include <unordered_map> #include <boost/functional/hash.hpp> #include "ControlCacheKey.hxx" @@ -130,7 +130,7 @@ struct ImplSVAppData LocaleConfigurationListener* mpCfgListener = nullptr; VclEventListeners* mpEventListeners = nullptr; // listeners for vcl events (eg, extended toolkit) SVAppKeyListeners* mpKeyListeners = nullptr; // listeners for key events only (eg, extended toolkit) - std::list<ImplPostEventPair> maPostedEventList; + std::vector<ImplPostEventPair> maPostedEventList; ImplAccelManager* mpAccelMgr = nullptr; // Accelerator Manager OUString* mpAppName = nullptr; // Application name OUString* mpAppFileName = nullptr; // Abs. Application FileName @@ -362,7 +362,7 @@ struct ImplSVData css::uno::Reference< css::lang::XComponent > mxAccessBridge; vcl::SettingsConfigItem* mpSettingsConfigItem = nullptr; - std::list< vcl::DeleteOnDeinitBase* >* mpDeinitDeleteList = nullptr; + std::vector< vcl::DeleteOnDeinitBase* >* mpDeinitDeleteList = nullptr; std::unordered_map< int, OUString >* mpPaperNames = nullptr; css::uno::Reference<css::i18n::XCharacterClassification> m_xCharClass; |