summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/kaccounttemplateselector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/widgets/kaccounttemplateselector.cpp')
-rw-r--r--kmymoney2/widgets/kaccounttemplateselector.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/widgets/kaccounttemplateselector.cpp b/kmymoney2/widgets/kaccounttemplateselector.cpp
index 710cb62..140c4c9 100644
--- a/kmymoney2/widgets/kaccounttemplateselector.cpp
+++ b/kmymoney2/widgets/kaccounttemplateselector.cpp
@@ -168,10 +168,10 @@ KAccountTemplateSelector::KAccountTemplateSelector(TQWidget* parent, const char*
d(new Private(this))
{
m_accountList->header()->hide();
- connect(m_groupList, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotLoadHierarchy()));
+ connect(m_groupList, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotLoadHierarchy()));
// kick off loading of account template data
- TQTimer::singleShot(0, this, TQT_SLOT(slotLoadTemplateList()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotLoadTemplateList()));
}
KAccountTemplateSelector::~KAccountTemplateSelector()
@@ -229,7 +229,7 @@ void KAccountTemplateSelector::slotLoadTemplateList(void)
d->m_templates.clear();
d->it_m = d->countries.begin();
d->id = 1;
- TQTimer::singleShot(0, this, TQT_SLOT(slotLoadCountry()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotLoadCountry()));
#endif
}
@@ -256,7 +256,7 @@ void KAccountTemplateSelector::slotLoadCountry(void)
++d->it_m;
if(d->it_m != d->countries.end())
- TQTimer::singleShot(0, this, TQT_SLOT(slotLoadCountry()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotLoadCountry()));
else {
d->loadHierarchy();
}