summaryrefslogtreecommitdiffstats
path: root/tdescreensaver/kdesavers/lines.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdescreensaver/kdesavers/lines.cpp')
-rw-r--r--tdescreensaver/kdesavers/lines.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tdescreensaver/kdesavers/lines.cpp b/tdescreensaver/kdesavers/lines.cpp
index e80d85c6..07123934 100644
--- a/tdescreensaver/kdesavers/lines.cpp
+++ b/tdescreensaver/kdesavers/lines.cpp
@@ -133,7 +133,7 @@ kLinesSetup::kLinesSetup(TQWidget *parent, const char *name)
sb->setMinimumSize(120, 20);
sb->setTickmarks(TQSlider::Below);
sb->setTickInterval(32);
- connect(sb, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotLength(int)));
+ connect(sb, TQ_SIGNAL(valueChanged(int)), TQ_SLOT(slotLength(int)));
tl1->addWidget(sb);
label=new TQLabel(i18n("Speed:"), main);
@@ -143,31 +143,31 @@ kLinesSetup::kLinesSetup(TQWidget *parent, const char *name)
sb->setMinimumSize(120, 20);
sb->setTickmarks(TQSlider::Below);
sb->setTickInterval(10);
- connect( sb, TQT_SIGNAL( valueChanged( int ) ), TQT_SLOT( slotSpeed( int ) ) );
+ connect( sb, TQ_SIGNAL( valueChanged( int ) ), TQ_SLOT( slotSpeed( int ) ) );
tl1->addWidget(sb);
label=new TQLabel(i18n("Beginning:"), main);
tl1->addWidget(label);
colorPush0=new KColorButton(colstart, main);
- connect(colorPush0, TQT_SIGNAL(changed(const TQColor &)),
- TQT_SLOT(slotColstart(const TQColor &)));
+ connect(colorPush0, TQ_SIGNAL(changed(const TQColor &)),
+ TQ_SLOT(slotColstart(const TQColor &)));
tl1->addWidget(colorPush0);
label=new TQLabel(i18n("Middle:"), main);
tl1->addWidget(label);
colorPush1=new KColorButton(colmid, main);
- connect(colorPush1, TQT_SIGNAL(changed(const TQColor &)),
- TQT_SLOT(slotColmid(const TQColor &)));
+ connect(colorPush1, TQ_SIGNAL(changed(const TQColor &)),
+ TQ_SLOT(slotColmid(const TQColor &)));
tl1->addWidget(colorPush1);
label=new TQLabel(i18n("End:"), main);
tl1->addWidget(label);
colorPush2=new KColorButton(colend, main);
- connect(colorPush2, TQT_SIGNAL(changed(const TQColor &)),
- TQT_SLOT(slotColend(const TQColor &)));
+ connect(colorPush2, TQ_SIGNAL(changed(const TQColor &)),
+ TQ_SLOT(slotColend(const TQColor &)));
tl1->addWidget(colorPush2);
tl1->addStretch();
@@ -283,7 +283,7 @@ kLinesSaver::kLinesSaver( WId id ) : KScreenSaver( id ){
initialiseColor();
initialiseLines();
timer.start(speed);
- connect(&timer, TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout()));
+ connect(&timer, TQ_SIGNAL(timeout()), TQ_SLOT(slotTimeout()));
}
kLinesSaver::~kLinesSaver(){