diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-12-02 20:56:44 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-12-02 22:39:12 +0100 |
commit | bd7776f96358b4e868f4f64b793a63c5d5d82499 (patch) | |
tree | 8a5977f2fb010227e1741cc3ca9fa4aadca2891d /xmloff/source | |
parent | 279674b3024d83601e928e74e128892ca8762dc7 (diff) |
Replace list by vector in property_description (xmloff)
Change-Id: I1290e559f17eb1efbfec09419b4e5283263497fb
Reviewed-on: https://gerrit.libreoffice.org/45725
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/forms/property_description.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmloff/source/forms/property_description.hxx b/xmloff/source/forms/property_description.hxx index 940e3fb959c4..2e6e120547b6 100644 --- a/xmloff/source/forms/property_description.hxx +++ b/xmloff/source/forms/property_description.hxx @@ -26,7 +26,6 @@ #include <xmloff/xmltoken.hxx> #include <vector> -#include <list> namespace xmloff { @@ -113,7 +112,7 @@ namespace xmloff typedef ::std::vector< const PropertyDescription* > PropertyDescriptionList; //= PropertyGroups - typedef ::std::list< PropertyDescriptionList > PropertyGroups; + typedef ::std::vector< PropertyDescriptionList > PropertyGroups; } // namespace xmloff |