From bd7776f96358b4e868f4f64b793a63c5d5d82499 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 2 Dec 2017 20:56:44 +0100 Subject: Replace list by vector in property_description (xmloff) Change-Id: I1290e559f17eb1efbfec09419b4e5283263497fb Reviewed-on: https://gerrit.libreoffice.org/45725 Tested-by: Jenkins Reviewed-by: Julien Nabet --- xmloff/source/forms/property_description.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'xmloff') 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 #include -#include 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 -- cgit