summaryrefslogtreecommitdiffstats
path: root/examples/demo/opengl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /examples/demo/opengl
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'examples/demo/opengl')
-rw-r--r--examples/demo/opengl/fbm.c2
-rw-r--r--examples/demo/opengl/glcontrolwidget.cpp4
-rw-r--r--examples/demo/opengl/glcontrolwidget.h2
-rw-r--r--examples/demo/opengl/glinfo.h2
-rw-r--r--examples/demo/opengl/glinfo_x11.cpp4
-rw-r--r--examples/demo/opengl/glinfotext.h6
-rw-r--r--examples/demo/opengl/gllandscape.cpp2
-rw-r--r--examples/demo/opengl/gllandscape.h2
-rw-r--r--examples/demo/opengl/gltexobj.cpp2
-rw-r--r--examples/demo/opengl/glworkspace.cpp22
-rw-r--r--examples/demo/opengl/glworkspace.h2
-rw-r--r--examples/demo/opengl/printpreview.ui4
12 files changed, 27 insertions, 27 deletions
diff --git a/examples/demo/opengl/fbm.c b/examples/demo/opengl/fbm.c
index 47d5a6163..20c486665 100644
--- a/examples/demo/opengl/fbm.c
+++ b/examples/demo/opengl/fbm.c
@@ -10,7 +10,7 @@
******************************************************************/
#if defined (_MSC_VER)
-#include <qglobal.h>
+#include <ntqglobal.h>
#endif
#include <time.h>
diff --git a/examples/demo/opengl/glcontrolwidget.cpp b/examples/demo/opengl/glcontrolwidget.cpp
index 2e019f051..5c75b9483 100644
--- a/examples/demo/opengl/glcontrolwidget.cpp
+++ b/examples/demo/opengl/glcontrolwidget.cpp
@@ -1,7 +1,7 @@
#include "glcontrolwidget.h"
-#include <qcursor.h>
-#include <qtimer.h>
+#include <ntqcursor.h>
+#include <ntqtimer.h>
#include <math.h>
diff --git a/examples/demo/opengl/glcontrolwidget.h b/examples/demo/opengl/glcontrolwidget.h
index 7a1b6174b..97a99f656 100644
--- a/examples/demo/opengl/glcontrolwidget.h
+++ b/examples/demo/opengl/glcontrolwidget.h
@@ -1,7 +1,7 @@
#ifndef GLCONTROLWIDGET_H
#define GLCONTROLWIDGET_H
-#include <qgl.h>
+#include <ntqgl.h>
class GLControlWidget : public TQGLWidget
{
diff --git a/examples/demo/opengl/glinfo.h b/examples/demo/opengl/glinfo.h
index 70266fc1d..109c88ceb 100644
--- a/examples/demo/opengl/glinfo.h
+++ b/examples/demo/opengl/glinfo.h
@@ -10,7 +10,7 @@
#ifndef GLINFO_H
#define GLINFO_H
-#include <qstring.h>
+#include <ntqstring.h>
class GLInfo
{
diff --git a/examples/demo/opengl/glinfo_x11.cpp b/examples/demo/opengl/glinfo_x11.cpp
index 5155f87c8..7716d771f 100644
--- a/examples/demo/opengl/glinfo_x11.cpp
+++ b/examples/demo/opengl/glinfo_x11.cpp
@@ -9,8 +9,8 @@
#define QT_CLEAN_NAMESPACE // avoid clashes with Xmd.h
-#include <qstringlist.h>
-#include <qgl.h>
+#include <ntqstringlist.h>
+#include <ntqgl.h>
#include "glinfo.h"
#include <GL/glx.h>
diff --git a/examples/demo/opengl/glinfotext.h b/examples/demo/opengl/glinfotext.h
index 80f42baba..991428091 100644
--- a/examples/demo/opengl/glinfotext.h
+++ b/examples/demo/opengl/glinfotext.h
@@ -1,6 +1,6 @@
-#include <qlayout.h>
-#include <qtextview.h>
-#include <qfont.h>
+#include <ntqlayout.h>
+#include <ntqtextview.h>
+#include <ntqfont.h>
#include "glinfo.h"
class GLInfoText : public TQWidget
diff --git a/examples/demo/opengl/gllandscape.cpp b/examples/demo/opengl/gllandscape.cpp
index 7336a20c8..2906a5c84 100644
--- a/examples/demo/opengl/gllandscape.cpp
+++ b/examples/demo/opengl/gllandscape.cpp
@@ -1,4 +1,4 @@
-#include <qimage.h>
+#include <ntqimage.h>
#include "gllandscape.h"
diff --git a/examples/demo/opengl/gllandscape.h b/examples/demo/opengl/gllandscape.h
index 7d91215c9..e4f457e7c 100644
--- a/examples/demo/opengl/gllandscape.h
+++ b/examples/demo/opengl/gllandscape.h
@@ -1,7 +1,7 @@
#ifndef GLLANDSCAPE_H
#define GLLANDSCAPE_H
-#include <qgl.h>
+#include <ntqgl.h>
class GLLandscape : public TQGLWidget
{
diff --git a/examples/demo/opengl/gltexobj.cpp b/examples/demo/opengl/gltexobj.cpp
index 30a9b8c93..8a2a8c102 100644
--- a/examples/demo/opengl/gltexobj.cpp
+++ b/examples/demo/opengl/gltexobj.cpp
@@ -17,7 +17,7 @@
****************************************************************************/
#include "gltexobj.h"
-#include <qimage.h>
+#include <ntqimage.h>
/*!
Create a GLTexobj widget
diff --git a/examples/demo/opengl/glworkspace.cpp b/examples/demo/opengl/glworkspace.cpp
index ecc1f374e..3010d4105 100644
--- a/examples/demo/opengl/glworkspace.cpp
+++ b/examples/demo/opengl/glworkspace.cpp
@@ -3,17 +3,17 @@
#include "glgear.h"
#include "gltexobj.h"
-#include <qworkspace.h>
-#include <qdialog.h>
-#include <qtoolbar.h>
-#include <qpopupmenu.h>
-#include <qmenubar.h>
-#include <qaction.h>
-#include <qprinter.h>
-#include <qpainter.h>
-#include <qcheckbox.h>
-#include <qvbox.h>
-#include <qimage.h>
+#include <ntqworkspace.h>
+#include <ntqdialog.h>
+#include <ntqtoolbar.h>
+#include <ntqpopupmenu.h>
+#include <ntqmenubar.h>
+#include <ntqaction.h>
+#include <ntqprinter.h>
+#include <ntqpainter.h>
+#include <ntqcheckbox.h>
+#include <ntqvbox.h>
+#include <ntqimage.h>
#include "printpreview.h"
diff --git a/examples/demo/opengl/glworkspace.h b/examples/demo/opengl/glworkspace.h
index 4bf532a95..3739b24a1 100644
--- a/examples/demo/opengl/glworkspace.h
+++ b/examples/demo/opengl/glworkspace.h
@@ -1,7 +1,7 @@
#ifndef GLWORKSPACE_H
#define GLWORKSPACE_H
-#include <qmainwindow.h>
+#include <ntqmainwindow.h>
class TQWorkspace;
class TQPrinter;
diff --git a/examples/demo/opengl/printpreview.ui b/examples/demo/opengl/printpreview.ui
index b312edca1..92cd609b3 100644
--- a/examples/demo/opengl/printpreview.ui
+++ b/examples/demo/opengl/printpreview.ui
@@ -255,8 +255,8 @@
</connection>
</connections>
<includes>
- <include location="global" impldecl="in declaration">qimage.h</include>
- <include location="global" impldecl="in declaration">qpixmap.h</include>
+ <include location="global" impldecl="in declaration">ntqimage.h</include>
+ <include location="global" impldecl="in declaration">ntqpixmap.h</include>
<include location="local" impldecl="in implementation">printpreview.ui.h</include>
</includes>
<variables>