summaryrefslogtreecommitdiffstats
path: root/kplato/kpttaskappointmentsview.ui.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:23:24 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:23:24 -0600
commit5b8ab149469c8e186ee8b05d90c0103ae722dd85 (patch)
treefb31321c80b12ee8e2237bdcf8c228fe44e67772 /kplato/kpttaskappointmentsview.ui.h
parentfe33d391dd7c9da0f83e779344a17e2e445b70a8 (diff)
downloadkoffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.tar.gz
koffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kplato/kpttaskappointmentsview.ui.h')
-rw-r--r--kplato/kpttaskappointmentsview.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kpttaskappointmentsview.ui.h b/kplato/kpttaskappointmentsview.ui.h
index b06fb4be..b638597e 100644
--- a/kplato/kpttaskappointmentsview.ui.h
+++ b/kplato/kpttaskappointmentsview.ui.h
@@ -63,9 +63,9 @@ void TaskAppointmentsView::draw(Task *task)
item->setText(i++, it.current()->startTime().date().toString(ISODate));
item->setText(i++, it.current()->endTime().date().toString(ISODate));
item->setText(i++, it.current()->plannedEffort().toString(Duration::Format_HourFraction));
- item->setText(i++, KGlobal::locale()->formatMoney(r->normalRate()));
- item->setText(i++, KGlobal::locale()->formatMoney(r->overtimeRate()));
- item->setText(i++, KGlobal::locale()->formatMoney(r->fixedCost()));
+ item->setText(i++, TDEGlobal::locale()->formatMoney(r->normalRate()));
+ item->setText(i++, TDEGlobal::locale()->formatMoney(r->overtimeRate()));
+ item->setText(i++, TDEGlobal::locale()->formatMoney(r->fixedCost()));
TQPtrListIterator<AppointmentInterval> ait = it.current()->intervals();
for (; ait.current(); ++ait) {
TQListViewItem *sub = new TQListViewItem(item, "");
@@ -98,9 +98,9 @@ void TaskAppointmentsView::drawCostEffort()
{
if (m_task == 0)
return;
- m_actualCost->setText(KGlobal::locale()->formatMoney(m_task->actualCostTo(m_date->date())));
- m_plannedCost->setText(KGlobal::locale()->formatMoney(m_task->plannedCostTo(m_date->date())));
- m_plannedCostTotal->setText(KGlobal::locale()->formatMoney(m_task->plannedCost()));
+ m_actualCost->setText(TDEGlobal::locale()->formatMoney(m_task->actualCostTo(m_date->date())));
+ m_plannedCost->setText(TDEGlobal::locale()->formatMoney(m_task->plannedCostTo(m_date->date())));
+ m_plannedCostTotal->setText(TDEGlobal::locale()->formatMoney(m_task->plannedCost()));
m_actualEffort->setText(m_task->actualEffortTo(m_date->date()).toString(Duration::Format_HourFraction));
m_plannedEffort->setText(m_task->plannedEffortTo(m_date->date()).toString(Duration::Format_HourFraction));