summaryrefslogtreecommitdiffstats
path: root/examples/demo/qasteroids
diff options
context:
space:
mode:
Diffstat (limited to 'examples/demo/qasteroids')
-rw-r--r--examples/demo/qasteroids/ledmeter.cpp2
-rw-r--r--examples/demo/qasteroids/ledmeter.h4
-rw-r--r--examples/demo/qasteroids/sprites.h2
-rw-r--r--examples/demo/qasteroids/toplevel.cpp12
-rw-r--r--examples/demo/qasteroids/toplevel.h6
-rw-r--r--examples/demo/qasteroids/view.cpp8
-rw-r--r--examples/demo/qasteroids/view.h10
7 files changed, 22 insertions, 22 deletions
diff --git a/examples/demo/qasteroids/ledmeter.cpp b/examples/demo/qasteroids/ledmeter.cpp
index de75852a9..5329d7ca8 100644
--- a/examples/demo/qasteroids/ledmeter.cpp
+++ b/examples/demo/qasteroids/ledmeter.cpp
@@ -4,7 +4,7 @@
* Part of the KDE project
*/
-#include <qpainter.h>
+#include <ntqpainter.h>
#include "ledmeter.h"
KALedMeter::KALedMeter( TQWidget *parent ) : TQFrame( parent )
diff --git a/examples/demo/qasteroids/ledmeter.h b/examples/demo/qasteroids/ledmeter.h
index 8018c72df..93bae087d 100644
--- a/examples/demo/qasteroids/ledmeter.h
+++ b/examples/demo/qasteroids/ledmeter.h
@@ -7,8 +7,8 @@
#ifndef __LEDMETER_H__
#define __LEDMETER_H__
-#include <qframe.h>
-#include <qptrlist.h>
+#include <ntqframe.h>
+#include <ntqptrlist.h>
class KALedMeter : public TQFrame
diff --git a/examples/demo/qasteroids/sprites.h b/examples/demo/qasteroids/sprites.h
index 361bd0e2b..dbf834412 100644
--- a/examples/demo/qasteroids/sprites.h
+++ b/examples/demo/qasteroids/sprites.h
@@ -7,7 +7,7 @@
#ifndef __SPRITES_H__
#define __SPRITES_H__
-#include <qcanvas.h>
+#include <ntqcanvas.h>
#define ID_ROCK_LARGE 1024
#define ID_ROCK_MEDIUM 1025
diff --git a/examples/demo/qasteroids/toplevel.cpp b/examples/demo/qasteroids/toplevel.cpp
index fbec2ec28..973bc6c7c 100644
--- a/examples/demo/qasteroids/toplevel.cpp
+++ b/examples/demo/qasteroids/toplevel.cpp
@@ -4,13 +4,13 @@
* Part of the KDE project
*/
// --- toplevel.cpp ---
-#include <qaccel.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qlcdnumber.h>
-#include <qpushbutton.h>
+#include <ntqaccel.h>
+#include <ntqlabel.h>
+#include <ntqlayout.h>
+#include <ntqlcdnumber.h>
+#include <ntqpushbutton.h>
-#include <qapplication.h>
+#include <ntqapplication.h>
#include "toplevel.h"
#include "ledmeter.h"
diff --git a/examples/demo/qasteroids/toplevel.h b/examples/demo/qasteroids/toplevel.h
index 158363b08..6b3478064 100644
--- a/examples/demo/qasteroids/toplevel.h
+++ b/examples/demo/qasteroids/toplevel.h
@@ -7,9 +7,9 @@
#ifndef __KAST_TOPLEVEL_H__
#define __KAST_TOPLEVEL_H__
-#include <qmainwindow.h>
-#include <qdict.h>
-#include <qmap.h>
+#include <ntqmainwindow.h>
+#include <ntqdict.h>
+#include <ntqmap.h>
#include "view.h"
diff --git a/examples/demo/qasteroids/view.cpp b/examples/demo/qasteroids/view.cpp
index 99acca1ff..7aa86c4e7 100644
--- a/examples/demo/qasteroids/view.cpp
+++ b/examples/demo/qasteroids/view.cpp
@@ -6,10 +6,10 @@
#include <stdlib.h>
#include <math.h>
-#include <qapplication.h>
-#include <qkeycode.h>
-#include <qaccel.h>
-#include <qmessagebox.h>
+#include <ntqapplication.h>
+#include <ntqkeycode.h>
+#include <ntqaccel.h>
+#include <ntqmessagebox.h>
#include "view.h"
diff --git a/examples/demo/qasteroids/view.h b/examples/demo/qasteroids/view.h
index 2f2c53b28..6ab92a1c2 100644
--- a/examples/demo/qasteroids/view.h
+++ b/examples/demo/qasteroids/view.h
@@ -7,11 +7,11 @@
#ifndef __AST_VIEW_H__
#define __AST_VIEW_H__
-#include <qwidget.h>
-#include <qptrlist.h>
-#include <qintdict.h>
-#include <qtimer.h>
-#include <qcanvas.h>
+#include <ntqwidget.h>
+#include <ntqptrlist.h>
+#include <ntqintdict.h>
+#include <ntqtimer.h>
+#include <ntqcanvas.h>
#include "sprites.h"
#define MAX_POWER_LEVEL 1000