summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-11 09:21:55 +0200
committerNoel Grandin <noel@peralex.com>2015-09-14 10:00:43 +0200
commitbcb5756cb0997923ea565459440767e22ce34e7d (patch)
tree11c55ec2f41696bbe8b0204e90aa88fd9d74f3c6 /vcl/inc
parent8f2aace934eb2a91a273b6104de6383108b5c82a (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.hxx2
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
{