summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-11-04 17:45:25 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-11-05 15:25:45 +0100
commit3ae605f8b93df426236eed359814449589033a79 (patch)
tree38740533bcc77b28334ff15938f65045d7debaf7 /include/unotools
parentd6765e376706680156e71e985eeeb58bf469f849 (diff)
Replace lists by vectors in configmgr/unotools
+ use for range loops Change-Id: I4cebcf0536dc6c3ddfdce9532e94c0c380ea3ab9 Reviewed-on: https://gerrit.libreoffice.org/44308 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/configmgr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/configmgr.hxx b/include/unotools/configmgr.hxx
index c74305b3c6b1..fe6a13545ed0 100644
--- a/include/unotools/configmgr.hxx
+++ b/include/unotools/configmgr.hxx
@@ -22,7 +22,7 @@
#include <sal/config.h>
-#include <list>
+#include <vector>
#include <com/sun/star/uno/Reference.hxx>
#include <sal/types.h>
@@ -84,7 +84,7 @@ private:
void doStoreConfigItems();
- std::list< ConfigItem * > items_;
+ std::vector< ConfigItem * > items_;
};
}