[Libreoffice-commits] core.git: vcl/inc

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Fri May 10 05:04:26 UTC 2019


 vcl/inc/opengl/program.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7dda93787a7b55d185f31081394fb6e4f83d3f77
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu May 9 18:32:02 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri May 10 07:03:50 2019 +0200

    Replace list by vector vcl/opengl
    
    Change-Id: Ia91e8d470729fff3f34e5f244a7e19359433a2ee
    Reviewed-on: https://gerrit.libreoffice.org/72068
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/vcl/inc/opengl/program.hxx b/vcl/inc/opengl/program.hxx
index 6aadbed9fdde..cc1e28190916 100644
--- a/vcl/inc/opengl/program.hxx
+++ b/vcl/inc/opengl/program.hxx
@@ -12,7 +12,7 @@
 
 #include <sal/config.h>
 
-#include <list>
+#include <vector>
 
 #include <vcl/dllapi.h>
 
@@ -53,7 +53,7 @@ private:
     GLuint          mnExtrusionVectorsAttrib;
     GLuint          mnVertexColorsAttrib;
 
-    std::list< OpenGLTexture >     maTextures;
+    std::vector< OpenGLTexture >     maTextures;
     bool            mbBlending;
 
     float mfLastWidth;


More information about the Libreoffice-commits mailing list