summaryrefslogtreecommitdiffstats
path: root/examples/opengl/box
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-20 20:15:52 +0900
committerMichele Calgaro <[email protected]>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /examples/opengl/box
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz
tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'examples/opengl/box')
-rw-r--r--examples/opengl/box/README2
-rw-r--r--examples/opengl/box/box.doc2
-rw-r--r--examples/opengl/box/glbox.h2
-rw-r--r--examples/opengl/box/main.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/opengl/box/README b/examples/opengl/box/README
index 242c37257..d5fd6ab20 100644
--- a/examples/opengl/box/README
+++ b/examples/opengl/box/README
@@ -2,7 +2,7 @@
The box example
This example program shows how to use OpenGL in Qt: Put your OpenGL
-code in a class inherited from QGLWidget. The resulting subclass may
+code in a class inherited from TQGLWidget. The resulting subclass may
be used like any other TQt widget, with signals and slots, geometry
management, etc..
diff --git a/examples/opengl/box/box.doc b/examples/opengl/box/box.doc
index d30bd75b4..96f21208d 100644
--- a/examples/opengl/box/box.doc
+++ b/examples/opengl/box/box.doc
@@ -6,7 +6,7 @@
This example demonstrates how to use OpenGL in Qt.
Essentially, all you do is put your OpenGL code in a class inherited
-from QGLWidget. This class may then be used like any other TQt widget,
+from TQGLWidget. This class may then be used like any other TQt widget,
including the use of signals and slots and geometry management.
See \c{$TQTDIR/examples/opengl/box} for the source code.
diff --git a/examples/opengl/box/glbox.h b/examples/opengl/box/glbox.h
index 9d8bebc99..7e930b21f 100644
--- a/examples/opengl/box/glbox.h
+++ b/examples/opengl/box/glbox.h
@@ -16,7 +16,7 @@
#ifndef GLBOX_H
#define GLBOX_H
-#include <ntqgl.h>
+#include <tqgl.h>
class GLBox : public TQGLWidget
diff --git a/examples/opengl/box/main.cpp b/examples/opengl/box/main.cpp
index 52521c845..62b46122d 100644
--- a/examples/opengl/box/main.cpp
+++ b/examples/opengl/box/main.cpp
@@ -18,7 +18,7 @@
#include "globjwin.h"
#include <ntqapplication.h>
-#include <ntqgl.h>
+#include <tqgl.h>
/*
The main program is here.