diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:21:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:21:28 -0600 |
commit | 6c1d52c8248adb9189c944a28efde52330e99b66 (patch) | |
tree | 842df8de70813d5097e5d7ffe04577c4077381d9 /kmymoney2/widgets/transaction.cpp | |
parent | 4b12aca2f1e0304a1cb35df621e9a993dd4d81f7 (diff) | |
download | kmymoney-6c1d52c8248adb9189c944a28efde52330e99b66.tar.gz kmymoney-6c1d52c8248adb9189c944a28efde52330e99b66.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
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: |