diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-11 09:21:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-14 10:00:43 +0200 |
commit | bcb5756cb0997923ea565459440767e22ce34e7d (patch) | |
tree | 11c55ec2f41696bbe8b0204e90aa88fd9d74f3c6 /vcl/inc | |
parent | 8f2aace934eb2a91a273b6104de6383108b5c82a (diff) |
list->vector
since we are copying these before iterating over them, we don't need the
iterator guarantees of std::list
Change-Id: I9cb2048e1527f37104c3077e69b5f3b827f08c7b
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/svdata.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx index bb22ad692ed1..0d8e02c8e110 100644 --- a/vcl/inc/svdata.hxx +++ b/vcl/inc/svdata.hxx @@ -101,7 +101,7 @@ public: virtual void ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 ) SAL_OVERRIDE; }; -typedef std::list<Link<VclWindowEvent&,bool> > SVAppKeyListeners; +typedef std::vector<Link<VclWindowEvent&,bool> > SVAppKeyListeners; struct ImplSVAppData { |