summaryrefslogtreecommitdiffstats
path: root/kplato/kptcalendar.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:32:11 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:32:11 -0600
commit94844816550ad672ccfcdc25659c625546239998 (patch)
treee35fc60fd736c645d59f6408af032774ad8023d3 /kplato/kptcalendar.cc
parent2a811c38c74c03648ecf857e566c44483cbad706 (diff)
downloadkoffice-94844816550ad672ccfcdc25659c625546239998.tar.gz
koffice-94844816550ad672ccfcdc25659c625546239998.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kplato/kptcalendar.cc')
-rw-r--r--kplato/kptcalendar.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptcalendar.cc b/kplato/kptcalendar.cc
index 486c3dac..56ba7380 100644
--- a/kplato/kptcalendar.cc
+++ b/kplato/kptcalendar.cc
@@ -225,11 +225,11 @@ Duration CalendarDay::effort(const TQTime &start, const TQTime &end) {
for (; it.current(); ++it) {
//kdDebug()<<k_funcinfo<<"Interval: "<<it.current()->first.toString()<<" - "<<it.current()->second.toString()<<endl;
if (end > it.current()->first && start < it.current()->second) {
- DateTime dtStart(TQDate::tqcurrentDate(), start);
+ DateTime dtStart(TQDate::currentDate(), start);
if (start < it.current()->first) {
dtStart.setTime(it.current()->first);
}
- DateTime dtEnd(TQDate::tqcurrentDate(), end);
+ DateTime dtEnd(TQDate::currentDate(), end);
if (end > it.current()->second) {
dtEnd.setTime(it.current()->second);
}
@@ -282,8 +282,8 @@ Duration CalendarDay::duration() const {
Duration dur;
TQPtrListIterator<TQPair<TQTime, TQTime> > it = m_workingIntervals;
for (; it.current(); ++it) {
- DateTime start(TQDate::tqcurrentDate(), it.current()->first);
- DateTime end(TQDate::tqcurrentDate(), it.current()->second);
+ DateTime start(TQDate::currentDate(), it.current()->first);
+ DateTime end(TQDate::currentDate(), it.current()->second);
dur += end - start;
}
return dur;