summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/kcurrencyeditdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/dialogs/kcurrencyeditdlg.cpp')
-rw-r--r--kmymoney2/dialogs/kcurrencyeditdlg.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kmymoney2/dialogs/kcurrencyeditdlg.cpp b/kmymoney2/dialogs/kcurrencyeditdlg.cpp
index 6424a0e..c63e8b0 100644
--- a/kmymoney2/dialogs/kcurrencyeditdlg.cpp
+++ b/kmymoney2/dialogs/kcurrencyeditdlg.cpp
@@ -69,18 +69,18 @@ KCurrencyEditDlg::KCurrencyEditDlg(TQWidget *parent, const char *name ) :
// FIXME: the online source table currently has no functionality
m_onlineSourceTable->hide();
- connect(m_currencyList, TQT_SIGNAL(rightButtonPressed(TQListViewItem* , const TQPoint&, int)),
- this, TQT_SLOT(slotListClicked(TQListViewItem*, const TQPoint&, int)));
- connect(m_currencyList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(slotSelectCurrency(TQListViewItem*)));
+ connect(m_currencyList, TQ_SIGNAL(rightButtonPressed(TQListViewItem* , const TQPoint&, int)),
+ this, TQ_SLOT(slotListClicked(TQListViewItem*, const TQPoint&, int)));
+ connect(m_currencyList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), this, TQ_SLOT(slotSelectCurrency(TQListViewItem*)));
- connect(m_currencyList, TQT_SIGNAL(itemRenamed(TQListViewItem*,int,const TQString&)), this, TQT_SIGNAL(renameCurrency(TQListViewItem*,int,const TQString&)));
- connect(MyMoneyFile::instance(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(slotLoadCurrencies()));
+ connect(m_currencyList, TQ_SIGNAL(itemRenamed(TQListViewItem*,int,const TQString&)), this, TQ_SIGNAL(renameCurrency(TQListViewItem*,int,const TQString&)));
+ connect(MyMoneyFile::instance(), TQ_SIGNAL(dataChanged()), this, TQ_SLOT(slotLoadCurrencies()));
slotLoadCurrencies();
- connect(m_baseCurrencyButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotSelectBaseCurrency()));
- connect(buttonClose, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotClose()));
+ connect(m_baseCurrencyButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotSelectBaseCurrency()));
+ connect(buttonClose, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotClose()));
// FIXME: currently, no online help available
buttonHelp->hide();
@@ -89,7 +89,7 @@ KCurrencyEditDlg::KCurrencyEditDlg(TQWidget *parent, const char *name ) :
m_description->hide();
resize(width()-1, height()-1);
- TQTimer::singleShot(10, this, TQT_SLOT(timerDone()));
+ TQTimer::singleShot(10, this, TQ_SLOT(timerDone()));
}
void KCurrencyEditDlg::timerDone(void)