summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qglwidget.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qglwidget.3qt')
-rw-r--r--doc/man/man3/qglwidget.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/qglwidget.3qt b/doc/man/man3/qglwidget.3qt
index 177fdc51..c818b08f 100644
--- a/doc/man/man3/qglwidget.3qt
+++ b/doc/man/man3/qglwidget.3qt
@@ -371,13 +371,13 @@ Depending on your hardware, you can explicitly select which color buffer to grab
.SH "void QGLWidget::initializeGL ()\fC [virtual protected]\fR"
This virtual function is called once before the first call to paintGL() or resizeGL(), and then once whenever the widget has been assigned a new QGLContext. Reimplement it in a subclass.
.PP
-This function should set up any retquired OpenGL context rendering flags, defining display lists, etc.
+This function should set up any required OpenGL context rendering flags, defining display lists, etc.
.PP
There is no need to call makeCurrent() because this has already been done when this function is called.
.SH "void QGLWidget::initializeOverlayGL ()\fC [virtual protected]\fR"
This virtual function is used in the same manner as initializeGL() except that it operates on the widget's overlay context instead of the widget's main context. This means that initializeOverlayGL() is called once before the first call to paintOverlayGL() or resizeOverlayGL(). Reimplement it in a subclass.
.PP
-This function should set up any retquired OpenGL context rendering flags, defining display lists, etc. for the overlay context.
+This function should set up any required OpenGL context rendering flags, defining display lists, etc. for the overlay context.
.PP
There is no need to call makeOverlayCurrent() because this has already been done when this function is called.
.SH "bool QGLWidget::isSharing () const"