summaryrefslogtreecommitdiffstats
path: root/binaryurp/source/bridgefactory.hxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-11-17 19:05:44 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-18 07:49:45 +0100
commit9d1f61a61893435b26f7239136ad92b7354545a8 (patch)
tree50277f9e2350b222e0624c0df501ec66571fb15d /binaryurp/source/bridgefactory.hxx
parentloplugin:flatten in toolkit..writerfilter (diff)
downloadcore-9d1f61a61893435b26f7239136ad92b7354545a8.tar.gz
core-9d1f61a61893435b26f7239136ad92b7354545a8.zip
Replace some lists by vectors in binaryurp
+ use for range loops Change-Id: Ied18e378b73826c5a47957cad6cf86a4e19a9230 Reviewed-on: https://gerrit.libreoffice.org/44892 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'binaryurp/source/bridgefactory.hxx')
-rw-r--r--binaryurp/source/bridgefactory.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/binaryurp/source/bridgefactory.hxx b/binaryurp/source/bridgefactory.hxx
index a08016932200..048cbb8deeaf 100644
--- a/binaryurp/source/bridgefactory.hxx
+++ b/binaryurp/source/bridgefactory.hxx
@@ -23,7 +23,7 @@
#include <sal/config.h>
#include <exception>
-#include <list>
+#include <vector>
#include <map>
#include <com/sun/star/bridge/XBridgeFactory2.hpp>
@@ -110,9 +110,9 @@ private:
void SAL_CALL disposing() override;
typedef
- std::list<
+ std::vector<
com::sun::star::uno::Reference< com::sun::star::bridge::XBridge > >
- BridgeList;
+ BridgeVector;
typedef
std::map<
@@ -120,7 +120,7 @@ private:
com::sun::star::uno::Reference< com::sun::star::bridge::XBridge > >
BridgeMap;
- BridgeList unnamed_;
+ BridgeVector unnamed_;
BridgeMap named_;
};