summaryrefslogtreecommitdiffstats
path: root/src/entrymerger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entrymerger.cpp')
-rw-r--r--src/entrymerger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entrymerger.cpp b/src/entrymerger.cpp
index 62de6c1..2f7da22 100644
--- a/src/entrymerger.cpp
+++ b/src/entrymerger.cpp
@@ -35,11 +35,11 @@ EntryMerger::EntryMerger(Data::EntryVec entries_, TQObject* parent_)
TQString label = i18n("Merging entries...");
ProgressItem& item = ProgressManager::self()->newProgressItem(this, label, true /*canCancel*/);
item.setTotalSteps(m_origCount);
- connect(&item, TQT_SIGNAL(signalCancelled(ProgressItem*)), TQT_SLOT(slotCancel()));
+ connect(&item, TQ_SIGNAL(signalCancelled(ProgressItem*)), TQ_SLOT(slotCancel()));
// done if no entries to merge
if(m_origCount < 2) {
- TQTimer::singleShot(500, this, TQT_SLOT(slotCleanup()));
+ TQTimer::singleShot(500, this, TQ_SLOT(slotCleanup()));
} else {
slotStartNext(); // starts fetching
}
@@ -72,9 +72,9 @@ void EntryMerger::slotStartNext() {
m_entriesToCheck.remove(baseEntry);
if(m_cancelled || m_entriesToCheck.count() < 2) {
- TQTimer::singleShot(0, this, TQT_SLOT(slotCleanup()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotCleanup()));
} else {
- TQTimer::singleShot(0, this, TQT_SLOT(slotStartNext()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotStartNext()));
}
}