summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_slideshowwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sq_slideshowwidget.cpp')
-rw-r--r--ksquirrel/sq_slideshowwidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ksquirrel/sq_slideshowwidget.cpp b/ksquirrel/sq_slideshowwidget.cpp
index 2e4ba6a..167fb44 100644
--- a/ksquirrel/sq_slideshowwidget.cpp
+++ b/ksquirrel/sq_slideshowwidget.cpp
@@ -66,7 +66,7 @@ SQ_SlideShowWidget::SQ_SlideShowWidget(TQWidget *parent, const char *name)
message->setMargin(4);
message->setFrameShape(TQFrame::NoFrame);
- connect(timerHide, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotHide()));
+ connect(timerHide, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotHide()));
options = new TQHBox(this, "tde toolbar widget");
options->setSpacing(0);
@@ -79,26 +79,26 @@ SQ_SlideShowWidget::SQ_SlideShowWidget(TQWidget *parent, const char *name)
TQToolButton *b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("go-previous", TDEIcon::Desktop, is));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(previous()));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotResetPause()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(previous()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotResetPause()));
b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("go-next", TDEIcon::Desktop, is));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(next()));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotResetPause()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(next()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotResetPause()));
buttonPause = new TQToolButton(options);
buttonPause->setToggleButton(true);
buttonPause->setIconSet(SQ_IconLoader::instance()->loadIcon("media-playback-pause", TDEIcon::Desktop, is));
- connect(buttonPause, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(pause()));
+ connect(buttonPause, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(pause()));
b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("help", TDEIcon::Desktop, is));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotShowHelp()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotShowHelp()));
b = new TQToolButton(options);
b->setIconSet(SQ_IconLoader::instance()->loadIcon("cancel", TDEIcon::Desktop, is));
- connect(b, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(stopSlideShow()));
+ connect(b, TQ_SIGNAL(clicked()), this, TQ_SIGNAL(stopSlideShow()));
options->adjustSize();
message->setFixedHeight(options->height());