summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/kreconciledlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/dialogs/kreconciledlg.cpp')
-rw-r--r--kmymoney2/dialogs/kreconciledlg.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/kmymoney2/dialogs/kreconciledlg.cpp b/kmymoney2/dialogs/kreconciledlg.cpp
index a3d0553..ca78ee9 100644
--- a/kmymoney2/dialogs/kreconciledlg.cpp
+++ b/kmymoney2/dialogs/kreconciledlg.cpp
@@ -72,15 +72,15 @@ KReconcileDlg::KReconcileDlg(const MyMoneyMoney /* previousBal */, const MyMoney
// never show a horizontal scroll bar
creditListView->setHScrollBarMode(TQScrollView::AlwaysOff);
- endingLabel->setText(KGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
+ endingLabel->setText(TDEGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
- previousLabel->setText(KGlobal::locale()->formatMoney(m_endingBalance.amount(),""));
+ previousLabel->setText(TDEGlobal::locale()->formatMoney(m_endingBalance.amount(),""));
- broughtForwardLabel->setText(KGlobal::locale()->formatMoney(m_previousBalance.amount(),""));
+ broughtForwardLabel->setText(TDEGlobal::locale()->formatMoney(m_previousBalance.amount(),""));
- totalCreditsLabel->setText(i18n("Deposits: ") + KGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
+ totalCreditsLabel->setText(i18n("Deposits: ") + TDEGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
- totalDebitsLabel->setText(i18n("Withdrawals: ") + KGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
+ totalDebitsLabel->setText(i18n("Withdrawals: ") + TDEGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
loadLists();
@@ -198,9 +198,9 @@ void KReconcileDlg::slotDebitSelected(TQListViewItem* /* item */, const TQPoint&
reconcileItem->setReconciled(false);
m_reconciledTransactions.remove(reconcileItem->transaction());
}
- totalDebitsLabel->setText(i18n("Withdrawals: ") + KGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
+ totalDebitsLabel->setText(i18n("Withdrawals: ") + TDEGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
- endingLabel->setText(KGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
+ endingLabel->setText(TDEGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
doDifference();
*/
@@ -232,9 +232,9 @@ void KReconcileDlg::slotCreditSelected(TQListViewItem* /* item */, const TQPoint
m_reconciledTransactions.remove(reconcileItem->transaction());
}
- totalCreditsLabel->setText(i18n("Deposits: ") + KGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
+ totalCreditsLabel->setText(i18n("Deposits: ") + TDEGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
- endingLabel->setText(KGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
+ endingLabel->setText(TDEGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
doDifference();
*/
@@ -245,7 +245,7 @@ void KReconcileDlg::doDifference(void)
/*
MyMoneyMoney difference((m_previousBalance + m_clearedBalance)- m_endingBalance);
- differenceLabel->setText(KGlobal::locale()->formatMoney(difference.amount(),""));
+ differenceLabel->setText(TDEGlobal::locale()->formatMoney(difference.amount(),""));
if (difference.isZero())
m_balanced = true;
else
@@ -320,15 +320,15 @@ void KReconcileDlg::resetData(const MyMoneyMoney /* previousBal */, const MyMone
//differenceLabel->setAlignment(AlignRight | AlignVCenter | ExpandTabs | SingleLine);
- endingLabel->setText(KGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
+ endingLabel->setText(TDEGlobal::locale()->formatMoney(m_clearedBalance.amount(),""));
- previousLabel->setText(KGlobal::locale()->formatMoney(m_endingBalance.amount(),""));
+ previousLabel->setText(TDEGlobal::locale()->formatMoney(m_endingBalance.amount(),""));
- broughtForwardLabel->setText(KGlobal::locale()->formatMoney(m_previousBalance.amount(),""));
+ broughtForwardLabel->setText(TDEGlobal::locale()->formatMoney(m_previousBalance.amount(),""));
- totalCreditsLabel->setText(i18n("Deposits: ") + KGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
+ totalCreditsLabel->setText(i18n("Deposits: ") + TDEGlobal::locale()->formatMoney(m_creditBalance.amount(),""));
- totalDebitsLabel->setText(i18n("Withdrawals: ") + KGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
+ totalDebitsLabel->setText(i18n("Withdrawals: ") + TDEGlobal::locale()->formatMoney(m_debitBalance.amount(),""));
loadLists();
insertTransactions();