summaryrefslogtreecommitdiffstats
path: root/src/translators/tellicosaximporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/translators/tellicosaximporter.cpp')
-rw-r--r--src/translators/tellicosaximporter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translators/tellicosaximporter.cpp b/src/translators/tellicosaximporter.cpp
index 4adc6f2..fe9a070 100644
--- a/src/translators/tellicosaximporter.cpp
+++ b/src/translators/tellicosaximporter.cpp
@@ -98,7 +98,7 @@ Tellico::Data::CollPtr TellicoSaxImporter::collection() {
void TellicoSaxImporter::loadXMLData(const TQByteArray& data_, bool loadImages_) {
ProgressItem& item = ProgressManager::self()->newProgressItem(this, progressLabel(), true);
item.setTotalSteps(data_.size());
- connect(&item, SIGNAL(signalCancelled(ProgressItem*)), SLOT(slotCancel()));
+ connect(&item, TQ_SIGNAL(signalCancelled(ProgressItem*)), TQ_SLOT(slotCancel()));
ProgressItem::Done done(this);
const bool showProgress = options() & ImportProgress;
@@ -258,7 +258,7 @@ void TellicoSaxImporter::loadZipData() {
if(m_images.isEmpty()) {
// give it some time
- TQTimer::singleShot(3000, this, SLOT(deleteLater()));
+ TQTimer::singleShot(3000, this, TQ_SLOT(deleteLater()));
}
}
@@ -280,7 +280,7 @@ bool TellicoSaxImporter::loadImage(const TQString& id_) {
m_images.remove(id_);
if(m_images.isEmpty()) {
// give it some time
- TQTimer::singleShot(3000, this, SLOT(deleteLater()));
+ TQTimer::singleShot(3000, this, TQ_SLOT(deleteLater()));
}
return !newID.isEmpty();
}