diff options
Diffstat (limited to 'src/translators/tellicoimporter.cpp')
-rw-r--r-- | src/translators/tellicoimporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translators/tellicoimporter.cpp b/src/translators/tellicoimporter.cpp index 35a9482..632f11a 100644 --- a/src/translators/tellicoimporter.cpp +++ b/src/translators/tellicoimporter.cpp @@ -97,7 +97,7 @@ Tellico::Data::CollPtr TellicoImporter::collection() { void TellicoImporter::loadXMLData(const TQByteArray& data_, bool loadImages_) { ProgressItem& item = ProgressManager::self()->newProgressItem(this, progressLabel(), true); item.setTotalSteps(100); - connect(&item, TQT_SIGNAL(signalCancelled(ProgressItem*)), TQT_SLOT(slotCancel())); + connect(&item, TQ_SIGNAL(signalCancelled(ProgressItem*)), TQ_SLOT(slotCancel())); ProgressItem::Done done(this); TQDomDocument dom; @@ -872,7 +872,7 @@ void TellicoImporter::loadZipData() { if(m_images.isEmpty()) { // give it some time - TQTimer::singleShot(3000, this, TQT_SLOT(deleteLater())); + TQTimer::singleShot(3000, this, TQ_SLOT(deleteLater())); } } @@ -890,7 +890,7 @@ bool TellicoImporter::loadImage(const TQString& id_) { m_images.remove(id_); if(m_images.isEmpty()) { // give it some time - TQTimer::singleShot(3000, this, TQT_SLOT(deleteLater())); + TQTimer::singleShot(3000, this, TQ_SLOT(deleteLater())); } return !newID.isEmpty(); } |