summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_filethumbview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sq_filethumbview.cpp')
-rw-r--r--ksquirrel/sq_filethumbview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ksquirrel/sq_filethumbview.cpp b/ksquirrel/sq_filethumbview.cpp
index 389cc73..80b693c 100644
--- a/ksquirrel/sq_filethumbview.cpp
+++ b/ksquirrel/sq_filethumbview.cpp
@@ -55,10 +55,10 @@ SQ_FileThumbView::SQ_FileThumbView(TQWidget *parent, const char *name) : SQ_File
m_progressBox = new SQ_ProgressBox(this);
timerScroll = new TQTimer(this);
- connect(timerScroll, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotDelayedContentsMoving()));
+ connect(timerScroll, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotDelayedContentsMoving()));
timerAdd = new TQTimer(this);
- connect(timerAdd, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotDelayedAddItems()));
+ connect(timerAdd, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotDelayedAddItems()));
// setup cache limit
SQ_Config::instance()->setGroup("Thumbnails");
@@ -73,7 +73,7 @@ SQ_FileThumbView::SQ_FileThumbView(TQWidget *parent, const char *name) : SQ_File
// load "pending" pixmaps
pending = SQ_IconLoader::instance()->loadIcon("clock", TDEIcon::Desktop, 32);
- connect(this, TQT_SIGNAL(contentsMoving(int, int)), this, TQT_SLOT(slotContentsMoving(int, int)));
+ connect(this, TQ_SIGNAL(contentsMoving(int, int)), this, TQ_SLOT(slotContentsMoving(int, int)));
rebuildCachedPixmaps();
}
@@ -313,10 +313,10 @@ void SQ_FileThumbView::doStartThumbnailUpdate(const KFileItemList &list)
// create new job
thumbJob = new SQ_ThumbnailLoadJob(list, this);
- connect(thumbJob, TQT_SIGNAL(thumbnailLoaded(const KFileItem*, const SQ_Thumbnail &)),
- this, TQT_SLOT(setThumbnailPixmap(const KFileItem*, const SQ_Thumbnail&)));
+ connect(thumbJob, TQ_SIGNAL(thumbnailLoaded(const KFileItem*, const SQ_Thumbnail &)),
+ this, TQ_SLOT(setThumbnailPixmap(const KFileItem*, const SQ_Thumbnail&)));
- connect(thumbJob, TQT_SIGNAL(done()), SQ_WidgetStack::instance(), TQT_SLOT(thumbnailsUpdateEnded()));
+ connect(thumbJob, TQ_SIGNAL(done()), SQ_WidgetStack::instance(), TQ_SLOT(thumbnailsUpdateEnded()));
// start!
thumbJob->start();