summaryrefslogtreecommitdiffstats
path: root/examples/qtgl
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 10:28:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-27 10:51:04 +0900
commit82528b267c9ed2898653873d027184e21e36f569 (patch)
tree0a9de0cff63f7a32ed66553f3ce46ebb66d74d8a /examples/qtgl
parent50d1b990d5bea0fba69c065ec4fb629205e7b3b5 (diff)
downloadlibksquirrel-82528b26.tar.gz
libksquirrel-82528b26.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b6c5fd7f2cc1b54794896fb5445cbad795424d63)
Diffstat (limited to 'examples/qtgl')
-rw-r--r--examples/qtgl/myqgl.cpp2
-rw-r--r--examples/qtgl/myqgl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/qtgl/myqgl.cpp b/examples/qtgl/myqgl.cpp
index 2ae6e59..b1387f4 100644
--- a/examples/qtgl/myqgl.cpp
+++ b/examples/qtgl/myqgl.cpp
@@ -9,7 +9,7 @@
#include "ksquirrel-libs/fmt_utils.h"
#include "ksquirrel-libs/error.h"
-MyQGL::MyQGL(QWidget *parent, const char *name) : QGLWidget(parent, name), bits(0), w(0), h(0)
+MyQGL::MyQGL(TQWidget *parent, const char *name) : QGLWidget(parent, name), bits(0), w(0), h(0)
{}
MyQGL::~MyQGL()
diff --git a/examples/qtgl/myqgl.h b/examples/qtgl/myqgl.h
index d0549df..70c1690 100644
--- a/examples/qtgl/myqgl.h
+++ b/examples/qtgl/myqgl.h
@@ -14,7 +14,7 @@ class MyQGL : public QGLWidget
TQ_OBJECT
public:
- MyQGL(QWidget *parent = 0, const char *name = 0);
+ MyQGL(TQWidget *parent = 0, const char *name = 0);
~MyQGL();
public slots: