diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kpilot/conduits/vcalconduit/vcalRecord.cc | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpilot/conduits/vcalconduit/vcalRecord.cc')
-rw-r--r-- | kpilot/conduits/vcalconduit/vcalRecord.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kpilot/conduits/vcalconduit/vcalRecord.cc b/kpilot/conduits/vcalconduit/vcalRecord.cc index f9866d91a..898bc7986 100644 --- a/kpilot/conduits/vcalconduit/vcalRecord.cc +++ b/kpilot/conduits/vcalconduit/vcalRecord.cc @@ -70,7 +70,7 @@ static void setAlarms(KCal::Event *e, const PilotDateEntry *de) e->clearAlarms(); if (!de->isAlarmEnabled()) return; -// QDateTime alarmDT = readTm(de->getEventStart()); +// TQDateTime alarmDT = readTm(de->getEventStart()); int advanceUnits = de->getAdvanceUnits(); switch (advanceUnits) @@ -117,7 +117,7 @@ static void setRecurrence(KCal::Event *event,const PilotDateEntry *dateEntry) KCal::Recurrence *recur = event->recurrence(); int freq = dateEntry->getRepeatFrequency(); bool repeatsForever = dateEntry->getRepeatForever(); - QDate endDate, evt; + TQDate endDate, evt; if (!repeatsForever) { @@ -131,7 +131,7 @@ static void setRecurrence(KCal::Event *event,const PilotDateEntry *dateEntry) #endif } - QBitArray dayArray(7); + TQBitArray dayArray(7); switch(dateEntry->getRepeatType()) { @@ -326,7 +326,7 @@ static void setRecurrence(PilotDateEntry*dateEntry, const KCal::Event *event) // first we have 'fake type of recurrence' when a multi-day event is passed to the pilot, it is converted to an event // which recurs daily a number of times. if the event itself recurs, this will be overridden, and // only the first day will be included in the event!!!! - QDateTime startDt(readTm(dateEntry->getEventStart())), endDt(readTm(dateEntry->getEventEnd())); + TQDateTime startDt(readTm(dateEntry->getEventStart())), endDt(readTm(dateEntry->getEventEnd())); if (startDt.daysTo(endDt)) { isMultiDay=true; @@ -350,7 +350,7 @@ static void setRecurrence(PilotDateEntry*dateEntry, const KCal::Event *event) int freq=r->frequency(); - QDate endDate=r->endDate(); + TQDate endDate=r->endDate(); if ( r->duration() < 0 || !endDate.isValid() ) { @@ -366,7 +366,7 @@ static void setRecurrence(PilotDateEntry*dateEntry, const KCal::Event *event) DEBUGKPILOT<< "duration: "<<r->duration() << ", endDate: "<<endDate.toString()<< ", ValidEndDate: "<<endDate.isValid()<<", NullEndDate: "<<endDate.isNull()<<endl; #endif - QBitArray dayArray(7), dayArrayPalm(7); + TQBitArray dayArray(7), dayArrayPalm(7); switch(recType) { case KCal::Recurrence::rDaily: @@ -392,7 +392,7 @@ static void setRecurrence(PilotDateEntry*dateEntry, const KCal::Event *event) if (r->monthPositions().count()>0) { // Only take the first monthly position, as the palm allows only one - QValueList<KCal::RecurrenceRule::WDayPos> mps=r->monthPositions(); + TQValueList<KCal::RecurrenceRule::WDayPos> mps=r->monthPositions(); KCal::RecurrenceRule::WDayPos mp=mps.first(); int week = mp.pos(); int day = (mp.day()+1) % 7; // rotate because of different offset |