diff options
Diffstat (limited to 'kmymoney2/widgets/transaction.cpp')
-rw-r--r-- | kmymoney2/widgets/transaction.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/widgets/transaction.cpp b/kmymoney2/widgets/transaction.cpp index 00d0f56..ea5ea2c 100644 --- a/kmymoney2/widgets/transaction.cpp +++ b/kmymoney2/widgets/transaction.cpp @@ -212,7 +212,7 @@ void Transaction::markAttachment(TQPainter* painter, int /* row */, int /* col * painter->save(); if(clip.isNull()) { - clip = KGlobal::iconLoader()->loadIcon("attach", KIcon::Small, KIcon::SizeSmall, KIcon::DefaultState); + clip = TDEGlobal::iconLoader()->loadIcon("attach", KIcon::Small, KIcon::SizeSmall, KIcon::DefaultState); if(clip.height() > h) { clip.resize(h, h); } @@ -1029,7 +1029,7 @@ bool StdTransaction::formCellText(TQString& txt, int& align, int row, int col, T case ValueColumn2: align |= TQt::AlignRight; if(m_transaction != MyMoneyTransaction()) - txt = KGlobal::locale()->formatDate(m_transaction.postDate(), true); + txt = TDEGlobal::locale()->formatDate(m_transaction.postDate(), true); break; } break; @@ -1096,7 +1096,7 @@ void StdTransaction::registerCellText(TQString& txt, int& align, int row, int co case DateColumn: align |= TQt::AlignLeft; - txt = KGlobal::locale()->formatDate(m_transaction.postDate(), true); + txt = TDEGlobal::locale()->formatDate(m_transaction.postDate(), true); break; case DetailColumn: @@ -1500,7 +1500,7 @@ bool InvestTransaction::formCellText(TQString& txt, int& align, int row, int col align |= TQt::AlignRight; fieldEditable = true; if(m_transaction != MyMoneyTransaction()) - txt = KGlobal::locale()->formatDate(m_transaction.postDate(), true); + txt = TDEGlobal::locale()->formatDate(m_transaction.postDate(), true); break; } break; @@ -1688,7 +1688,7 @@ void InvestTransaction::registerCellText(TQString& txt, int& align, int row, int switch(col) { case DateColumn: align |= TQt::AlignLeft; - txt = KGlobal::locale()->formatDate(m_transaction.postDate(), true); + txt = TDEGlobal::locale()->formatDate(m_transaction.postDate(), true); break; case DetailColumn: |