diff options
Diffstat (limited to 'kolf/objects/test')
| -rw-r--r-- | kolf/objects/test/test.cpp | 6 | ||||
| -rw-r--r-- | kolf/objects/test/test.h | 4 |
2 files changed, 5 insertions, 5 deletions
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: |
