summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-05-09 18:32:02 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-05-10 07:03:50 +0200
commit7dda93787a7b55d185f31081394fb6e4f83d3f77 (patch)
tree52c4db317141121716460e9172aac842881a99d8 /vcl
parent98dced113650aa7bb70c17b626474458d872fcd6 (diff)
Replace list by vector vcl/opengl
Change-Id: Ia91e8d470729fff3f34e5f244a7e19359433a2ee Reviewed-on: https://gerrit.libreoffice.org/72068 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/opengl/program.hxx4
1 files changed, 2 insertions, 2 deletions
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;