summaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellogl2/logo.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/hellogl2/logo.h')
-rw-r--r--examples/opengl/hellogl2/logo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/opengl/hellogl2/logo.h b/examples/opengl/hellogl2/logo.h
index 2f3dc7e649..5b6c3973f7 100644
--- a/examples/opengl/hellogl2/logo.h
+++ b/examples/opengl/hellogl2/logo.h
@@ -52,7 +52,7 @@
#define LOGO_H
#include <qopengl.h>
-#include <QVector>
+#include <QList>
#include <QVector3D>
class Logo
@@ -68,7 +68,7 @@ private:
void extrude(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
void add(const QVector3D &v, const QVector3D &n);
- QVector<GLfloat> m_data;
+ QList<GLfloat> m_data;
int m_count = 0;
};