diff options
Diffstat (limited to 'kolf/objects')
| -rw-r--r-- | kolf/objects/poolball/poolball.cpp | 2 | ||||
| -rw-r--r-- | kolf/objects/poolball/poolball.h | 4 | ||||
| -rw-r--r-- | kolf/objects/test/test.cpp | 6 | ||||
| -rw-r--r-- | kolf/objects/test/test.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/kolf/objects/poolball/poolball.cpp b/kolf/objects/poolball/poolball.cpp index 58e62deb..19d0f6dd 100644 --- a/kolf/objects/poolball/poolball.cpp +++ b/kolf/objects/poolball/poolball.cpp @@ -69,7 +69,7 @@ PoolBallConfig::PoolBallConfig(PoolBall *poolBall, TQWidget *parent) layout->addStretch(); - connect(slider, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(numberChanged(int))); + connect(slider, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(numberChanged(int))); } void PoolBallConfig::numberChanged(int newNumber) diff --git a/kolf/objects/poolball/poolball.h b/kolf/objects/poolball/poolball.h index e6ac0e8a..722d3570 100644 --- a/kolf/objects/poolball/poolball.h +++ b/kolf/objects/poolball/poolball.h @@ -16,7 +16,7 @@ class StateDB; class TDEConfig; class PoolBallFactory : KLibFactory { - Q_OBJECT + TQ_OBJECT public: @@ -47,7 +47,7 @@ private: class PoolBallConfig : public Config { - Q_OBJECT + TQ_OBJECT public: diff --git a/kolf/objects/test/test.cpp b/kolf/objects/test/test.cpp index 45124f9c..4d57b387 100644 --- a/kolf/objects/test/test.cpp +++ b/kolf/objects/test/test.cpp @@ -39,7 +39,7 @@ void Test::advance(int phase) if (count % m_switchEvery == 0) { // random color - const TQColor myColor((TQRgb)(kapp->random() % 0x01000000)); + const TQColor myColor((TQRgb)(tdeApp->random() % 0x01000000)); // set the brush, so our shape is drawn // with the random color @@ -77,14 +77,14 @@ TestConfig::TestConfig(Test *test, TQWidget *parent) TQHBoxLayout *hlayout = new TQHBoxLayout(layout, spacingHint()); TQLabel *slow = new TQLabel(i18n("Slow"), this); hlayout->addWidget(slow); - TQSlider *slider = new TQSlider(1, 100, 5, 101 - m_test->switchEvery(), Qt::Horizontal, this); + TQSlider *slider = new TQSlider(1, 100, 5, 101 - m_test->switchEvery(), TQt::Horizontal, this); hlayout->addWidget(slider); TQLabel *fast = new TQLabel(i18n("Fast"), this); hlayout->addWidget(fast); layout->addStretch(); - connect(slider, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(switchEveryChanged(int))); + connect(slider, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(switchEveryChanged(int))); } void TestConfig::switchEveryChanged(int news) diff --git a/kolf/objects/test/test.h b/kolf/objects/test/test.h index db4a6205..fe216a53 100644 --- a/kolf/objects/test/test.h +++ b/kolf/objects/test/test.h @@ -12,7 +12,7 @@ class TDEConfig; class TestFactory : KLibFactory { - Q_OBJECT + TQ_OBJECT public: @@ -40,7 +40,7 @@ private: class TestConfig : public Config { - Q_OBJECT + TQ_OBJECT public: |
