summaryrefslogtreecommitdiffstats
path: root/kolf
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:07:10 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:07:10 -0600
commit5106f93512659db1a236db49febc5ed1a45e3384 (patch)
treef7a4da53d81ff5844af9d043604940c253cdb529 /kolf
parenta5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff)
downloadtdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz
tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kolf')
-rw-r--r--kolf/config.h6
-rw-r--r--kolf/editor.h2
-rw-r--r--kolf/floater.h2
-rw-r--r--kolf/game.h18
-rw-r--r--kolf/kcomboboxdialog.h2
-rw-r--r--kolf/kolf.h2
-rw-r--r--kolf/kvolumecontrol.h2
-rw-r--r--kolf/newgame.h4
-rw-r--r--kolf/object.h2
-rw-r--r--kolf/objects/poolball/poolball.h4
-rw-r--r--kolf/objects/test/test.h4
-rw-r--r--kolf/printdialogpage.h2
-rw-r--r--kolf/scoreboard.h2
-rw-r--r--kolf/slope.h2
14 files changed, 27 insertions, 27 deletions
diff --git a/kolf/config.h b/kolf/config.h
index c53428a7..795d6cec 100644
--- a/kolf/config.h
+++ b/kolf/config.h
@@ -6,7 +6,7 @@
class Config : public TQFrame
{
Q_OBJECT
- TQ_OBJECT
+
public:
Config(TQWidget *parent, const char *name = 0);
@@ -26,7 +26,7 @@ protected:
class MessageConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
MessageConfig(TQString text, TQWidget *parent, const char *name = 0);
@@ -36,7 +36,7 @@ public:
class DefaultConfig : public MessageConfig
{
Q_OBJECT
- TQ_OBJECT
+
public:
DefaultConfig(TQWidget *parent, const char *name = 0);
diff --git a/kolf/editor.h b/kolf/editor.h
index e61e73cf..bf41645a 100644
--- a/kolf/editor.h
+++ b/kolf/editor.h
@@ -13,7 +13,7 @@ class Config;
class Editor : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
Editor(ObjectList *list, TQWidget * = 0, const char * = 0);
diff --git a/kolf/floater.h b/kolf/floater.h
index e5b174ed..0f70c60c 100644
--- a/kolf/floater.h
+++ b/kolf/floater.h
@@ -7,7 +7,7 @@ class Floater;
class FloaterConfig : public BridgeConfig
{
Q_OBJECT
- TQ_OBJECT
+
public:
FloaterConfig(Floater *floater, TQWidget *parent);
diff --git a/kolf/game.h b/kolf/game.h
index 136ac1d7..da5c0beb 100644
--- a/kolf/game.h
+++ b/kolf/game.h
@@ -195,7 +195,7 @@ private:
class EllipseConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
EllipseConfig(Ellipse *ellipse, TQWidget *);
@@ -318,7 +318,7 @@ class BlackHole;
class BlackHoleConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
BlackHoleConfig(BlackHole *blackHole, TQWidget *parent);
@@ -355,7 +355,7 @@ protected:
class BlackHoleTimer : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
BlackHoleTimer(Ball *ball, double speed, int msec);
@@ -375,7 +375,7 @@ protected:
class BlackHole : public TQObject, public Hole
{
Q_OBJECT
- TQ_OBJECT
+
public:
BlackHole(TQCanvas *canvas);
@@ -545,7 +545,7 @@ class Bridge;
class BridgeConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
BridgeConfig(Bridge *bridge, TQWidget *);
@@ -618,7 +618,7 @@ class Sign;
class SignConfig : public BridgeConfig
{
Q_OBJECT
- TQ_OBJECT
+
public:
SignConfig(Sign *sign, TQWidget *parent);
@@ -667,7 +667,7 @@ protected:
class WindmillConfig : public BridgeConfig
{
Q_OBJECT
- TQ_OBJECT
+
public:
WindmillConfig(Windmill *windmill, TQWidget *parent);
@@ -715,7 +715,7 @@ class HoleInfo;
class HoleConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
HoleConfig(HoleInfo *holeInfo, TQWidget *);
@@ -801,7 +801,7 @@ struct KDE_EXPORT CourseInfo
class KDE_EXPORT KolfGame : public TQCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
public:
KolfGame(ObjectList *obj, PlayerList *players, TQString filename, TQWidget *parent=0, const char *name=0 );
diff --git a/kolf/kcomboboxdialog.h b/kolf/kcomboboxdialog.h
index 8db79122..18c0bba5 100644
--- a/kolf/kcomboboxdialog.h
+++ b/kolf/kcomboboxdialog.h
@@ -40,7 +40,7 @@ class KHistoryCombo;
class KComboBoxDialog : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
/**
diff --git a/kolf/kolf.h b/kolf/kolf.h
index ea0f3c29..c8488876 100644
--- a/kolf/kolf.h
+++ b/kolf/kolf.h
@@ -27,7 +27,7 @@ class Editor;
class KDE_EXPORT Kolf : public KMainWindow
{
Q_OBJECT
- TQ_OBJECT
+
public:
Kolf();
diff --git a/kolf/kvolumecontrol.h b/kolf/kvolumecontrol.h
index 82e70e90..45102bb0 100644
--- a/kolf/kvolumecontrol.h
+++ b/kolf/kvolumecontrol.h
@@ -9,7 +9,7 @@
class KVolumeControl : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
KVolumeControl(Arts::SoundServerV2 server, KPlayObject *parent);
diff --git a/kolf/newgame.h b/kolf/newgame.h
index 9a8a7493..93bc46bc 100644
--- a/kolf/newgame.h
+++ b/kolf/newgame.h
@@ -27,7 +27,7 @@ class TQEvent;
class PlayerEditor : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
PlayerEditor(TQString name = TQString(), TQColor = red, TQWidget *parent = 0, const char *_name = 0);
@@ -51,7 +51,7 @@ private:
class NewGameDialog : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
NewGameDialog(bool enableCourses, TQWidget *parent, const char *_name = 0);
diff --git a/kolf/object.h b/kolf/object.h
index b04822a8..7c648865 100644
--- a/kolf/object.h
+++ b/kolf/object.h
@@ -10,7 +10,7 @@
class Object : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
Object(TQObject *parent = 0, const char *name = 0) : TQObject(parent, name) { m_addOnNewHole = false; }
diff --git a/kolf/objects/poolball/poolball.h b/kolf/objects/poolball/poolball.h
index db09f7bd..ca2ffa80 100644
--- a/kolf/objects/poolball/poolball.h
+++ b/kolf/objects/poolball/poolball.h
@@ -17,7 +17,7 @@ class KConfig;
class PoolBallFactory : KLibFactory {
Q_OBJECT
- TQ_OBJECT
+
public:
TQObject *createObject(TQObject *, const char *, const char *, const TQStringList & = TQStringList());
@@ -48,7 +48,7 @@ private:
class PoolBallConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
PoolBallConfig(PoolBall *poolBall, TQWidget *parent);
diff --git a/kolf/objects/test/test.h b/kolf/objects/test/test.h
index d4f00f41..b7aa0be5 100644
--- a/kolf/objects/test/test.h
+++ b/kolf/objects/test/test.h
@@ -13,7 +13,7 @@ class KConfig;
class TestFactory : KLibFactory {
Q_OBJECT
- TQ_OBJECT
+
public:
TQObject *createObject(TQObject *, const char *, const char *, const TQStringList & = TQStringList());
@@ -41,7 +41,7 @@ private:
class TestConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
TestConfig(Test *test, TQWidget *parent);
diff --git a/kolf/printdialogpage.h b/kolf/printdialogpage.h
index 3fcdca3a..0dd6cef9 100644
--- a/kolf/printdialogpage.h
+++ b/kolf/printdialogpage.h
@@ -11,7 +11,7 @@ class TQWidget;
class PrintDialogPage : public KPrintDialogPage
{
Q_OBJECT
- TQ_OBJECT
+
public:
PrintDialogPage(TQWidget *parent = 0, const char *name = 0);
diff --git a/kolf/scoreboard.h b/kolf/scoreboard.h
index 8f558e0e..05052ee0 100644
--- a/kolf/scoreboard.h
+++ b/kolf/scoreboard.h
@@ -9,7 +9,7 @@ class TQHeader;
class ScoreBoard : public TQTable
{
Q_OBJECT
- TQ_OBJECT
+
public:
ScoreBoard(TQWidget *parent = 0, const char *name = 0);
diff --git a/kolf/slope.h b/kolf/slope.h
index 5b025edb..1b31ab99 100644
--- a/kolf/slope.h
+++ b/kolf/slope.h
@@ -9,7 +9,7 @@ class Slope;
class SlopeConfig : public Config
{
Q_OBJECT
- TQ_OBJECT
+
public:
SlopeConfig(Slope *slope, TQWidget *parent);