diff options
Diffstat (limited to 'kplato/kptstandardworktimedialog.cc')
-rw-r--r-- | kplato/kptstandardworktimedialog.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kplato/kptstandardworktimedialog.cc b/kplato/kptstandardworktimedialog.cc index fb5a9c0e..d7c2c759 100644 --- a/kplato/kptstandardworktimedialog.cc +++ b/kplato/kptstandardworktimedialog.cc @@ -60,7 +60,7 @@ public: if (day->state() == Map::NonWorking) { setHours(); } else { - setText(1, KGlobal::locale()->formatNumber(day->duration().toDouble(Duration::Unit_h))); + setText(1, TDEGlobal::locale()->formatNumber(day->duration().toDouble(Duration::Unit_h))); } } ~WeekdayListItem() { @@ -72,7 +72,7 @@ public: } void setIntervals(TQPtrList<TQPair<TQTime, TQTime> > intervals) { day->setIntervals(intervals); - setText(1, KGlobal::locale()->formatNumber(day->duration().toDouble(Duration::Unit_h))); + setText(1, TDEGlobal::locale()->formatNumber(day->duration().toDouble(Duration::Unit_h))); } void setState(int st) { day->setState(st+1); @@ -166,7 +166,7 @@ StandardWorktimeDialogImpl::StandardWorktimeDialogImpl(StandardWorktime *std, TQ weekdayList->setSorting(-1); weekdayList->header()->setStretchEnabled(true); - const KCalendarSystem * cs = KGlobal::locale()->calendar(); + const KCalendarSystem * cs = TDEGlobal::locale()->calendar(); Calendar *cal = m_std->calendar(); if (cal) { WeekdayListItem *item = 0; |