diff options
Diffstat (limited to 'kplato')
-rw-r--r-- | kplato/kptaccountsview.cc | 2 | ||||
-rw-r--r-- | kplato/kptganttview.cc | 6 | ||||
-rw-r--r-- | kplato/kptreportview.cc | 2 | ||||
-rw-r--r-- | kplato/kptresourceappointmentsview.cc | 2 | ||||
-rw-r--r-- | kplato/kpttaskappointmentsview.cc | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/kplato/kptaccountsview.cc b/kplato/kptaccountsview.cc index 2527b5fe..89eb9c67 100644 --- a/kplato/kptaccountsview.cc +++ b/kplato/kptaccountsview.cc @@ -209,7 +209,7 @@ void AccountsView::slotUpdate() { //kdDebug()<<k_funcinfo<<endl; TQApplication::setOverrideCursor(TQt::waitCursor); createPeriods(); - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); const KCalendarSystem *cal = locale->calendar(); TQString t; diff --git a/kplato/kptganttview.cc b/kplato/kptganttview.cc index db077819..ffed6ad2 100644 --- a/kplato/kptganttview.cc +++ b/kplato/kptganttview.cc @@ -482,7 +482,7 @@ void GanttView::modifyProject(KDGanttViewItem *item, Node *node) void GanttView::modifySummaryTask(KDGanttViewItem *item, Task *task) { //kdDebug()<<k_funcinfo<<endl; - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); //kdDebug()<<k_funcinfo<<task->name()<<": "<<task->currentSchedule()<<", "<<task->notScheduled()<<", "<<(m_project ? m_project->notScheduled() : false)<<endl; if (task->currentSchedule() == 0) { item->setShowNoInformation(m_showNoInformation); @@ -530,7 +530,7 @@ void GanttView::modifySummaryTask(KDGanttViewItem *item, Task *task) void GanttView::modifyTask(KDGanttViewItem *item, Task *task) { //kdDebug()<<k_funcinfo<<endl; - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); //kdDebug()<<k_funcinfo<<task->name()<<": "<<task->currentSchedule()<<", "<<task->notScheduled()<<", "<<(m_project ? m_project->notScheduled() : false)<<endl; item->setListViewText(task->name()); item->setListViewText(1, task->wbs()); @@ -652,7 +652,7 @@ void GanttView::modifyTask(KDGanttViewItem *item, Task *task) void GanttView::modifyMilestone(KDGanttViewItem *item, Task *task) { //kdDebug()<<k_funcinfo<<endl; - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); //kdDebug()<<k_funcinfo<<task->name()<<": "<<task->currentSchedule()<<", "<<task->notScheduled()<<", "<<(m_project ? m_project->notScheduled() : false)<<endl; if (task->currentSchedule() == 0) { item->setShowNoInformation(m_showNoInformation); diff --git a/kplato/kptreportview.cc b/kplato/kptreportview.cc index 24a541f4..1e893ccf 100644 --- a/kplato/kptreportview.cc +++ b/kplato/kptreportview.cc @@ -79,7 +79,7 @@ public: TQString getData(TQString tag) const { //kdDebug()<<k_funcinfo<<"tag="<<tag<<endl; - KLocale *l = TDEGlobal::locale(); + TDELocale *l = TDEGlobal::locale(); if (!tag.contains('.')) { // global tags if (tag == "currentdate") { diff --git a/kplato/kptresourceappointmentsview.cc b/kplato/kptresourceappointmentsview.cc index 082892d2..5f6ac29b 100644 --- a/kplato/kptresourceappointmentsview.cc +++ b/kplato/kptresourceappointmentsview.cc @@ -126,7 +126,7 @@ void ResourceAppointmentsView::slotUpdate() { return; TQApplication::setOverrideCursor(TQt::waitCursor); createSlaveItems(); - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); const KCalendarSystem *cal = locale->calendar(); const Calendar *resCal = m_resource->calendar(); const TQDateTime availFrom = m_resource->availableFrom(); diff --git a/kplato/kpttaskappointmentsview.cc b/kplato/kpttaskappointmentsview.cc index 7c9288a3..c38cc3ce 100644 --- a/kplato/kpttaskappointmentsview.cc +++ b/kplato/kpttaskappointmentsview.cc @@ -108,7 +108,7 @@ void TaskAppointmentsView::slotUpdate() { return; TQApplication::setOverrideCursor(TQt::waitCursor); createSlaveItems(); - KLocale *locale = TDEGlobal::locale(); + TDELocale *locale = TDEGlobal::locale(); const KCalendarSystem *cal = locale->calendar(); // Add columns for selected period/periods |