summaryrefslogtreecommitdiffstats
path: root/src/opengl/qopengl2pexvertexarray_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/opengl/qopengl2pexvertexarray_p.h')
-rw-r--r--src/opengl/qopengl2pexvertexarray_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opengl/qopengl2pexvertexarray_p.h b/src/opengl/qopengl2pexvertexarray_p.h
index 3ef26e908d..ac9a5732db 100644
--- a/src/opengl/qopengl2pexvertexarray_p.h
+++ b/src/opengl/qopengl2pexvertexarray_p.h
@@ -63,13 +63,13 @@ class QOpenGLPoint
{
public:
QOpenGLPoint(GLfloat new_x, GLfloat new_y) :
- x(new_x), y(new_y) {};
+ x(new_x), y(new_y) {}
QOpenGLPoint(const QPointF &p) :
- x(p.x()), y(p.y()) {};
+ x(p.x()), y(p.y()) {}
QOpenGLPoint(const QPointF* p) :
- x(p->x()), y(p->y()) {};
+ x(p->x()), y(p->y()) {}
GLfloat x;
GLfloat y;