summaryrefslogtreecommitdiffstats
path: root/digikam/libs/dialogs/imagedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/libs/dialogs/imagedialog.cpp')
-rw-r--r--digikam/libs/dialogs/imagedialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/digikam/libs/dialogs/imagedialog.cpp b/digikam/libs/dialogs/imagedialog.cpp
index 5304126..d052a2a 100644
--- a/digikam/libs/dialogs/imagedialog.cpp
+++ b/digikam/libs/dialogs/imagedialog.cpp
@@ -104,8 +104,8 @@ ImageDialogPreview::ImageDialogPreview(TQWidget *parent)
d->timer = new TQTimer(this);
- connect(d->timer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(showPreview()) );
+ connect(d->timer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(showPreview()) );
}
ImageDialogPreview::~ImageDialogPreview()
@@ -156,11 +156,11 @@ void ImageDialogPreview::showPreview(const KURL& url)
d->thumbJob = new ThumbnailJob(url, ThumbnailSize::Huge, true, true);
- connect(d->thumbJob, TQT_SIGNAL(signalThumbnail(const KURL&, const TQPixmap&)),
- this, TQT_SLOT(slotGotThumbnail(const KURL&, const TQPixmap&)));
+ connect(d->thumbJob, TQ_SIGNAL(signalThumbnail(const KURL&, const TQPixmap&)),
+ this, TQ_SLOT(slotGotThumbnail(const KURL&, const TQPixmap&)));
- connect(d->thumbJob, TQT_SIGNAL(signalFailed(const KURL&)),
- this, TQT_SLOT(slotFailedThumbnail(const KURL&)));
+ connect(d->thumbJob, TQ_SIGNAL(signalFailed(const KURL&)),
+ this, TQ_SLOT(slotFailedThumbnail(const KURL&)));
d->metaIface.load(d->currentURL.path());
PhotoInfoContainer info = d->metaIface.getPhotographInformations();