[Libreoffice-commits] core.git: xmloff/source

Julien Nabet serval2412 at yahoo.fr
Sat Dec 2 21:40:14 UTC 2017


 xmloff/source/forms/property_description.hxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit bd7776f96358b4e868f4f64b793a63c5d5d82499
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Dec 2 20:56:44 2017 +0100

    Replace list by vector in property_description (xmloff)
    
    Change-Id: I1290e559f17eb1efbfec09419b4e5283263497fb
    Reviewed-on: https://gerrit.libreoffice.org/45725
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

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
 


More information about the Libreoffice-commits mailing list