diff options
Diffstat (limited to 'kresources/groupwise/soap/incidenceconverter.cpp')
-rw-r--r-- | kresources/groupwise/soap/incidenceconverter.cpp | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/kresources/groupwise/soap/incidenceconverter.cpp b/kresources/groupwise/soap/incidenceconverter.cpp index 051f00655..5e5e4c404 100644 --- a/kresources/groupwise/soap/incidenceconverter.cpp +++ b/kresources/groupwise/soap/incidenceconverter.cpp @@ -39,8 +39,8 @@ IncidenceConverter::IncidenceConverter( struct soap* soap ) mTimezone = KPimPrefs::timezone(); } -void IncidenceConverter::setFrom( const QString &name, - const QString &email, const QString &uuid ) +void IncidenceConverter::setFrom( const TQString &name, + const TQString &email, const TQString &uuid ) { mFromName = name; mFromEmail = email; @@ -135,8 +135,8 @@ ngwt__Appointment* IncidenceConverter::convertToAppointment( KCal::Event* event if ( event->dtStart().isValid() ) { /* kdDebug() << " convertToAppointment() raw start date: " << event->dtStart().toString() << endl;*/ - QDateTime start = event->dtStart(); - start.setTime( QTime( 0, 0, 0 ) ); + TQDateTime start = event->dtStart(); + start.setTime( TQTime( 0, 0, 0 ) ); appointment->startDate = qDateTimeToChar( start, mTimezone ); //appointment->startDay = qDateToString( event->dtStart().date()/*.addDays( -1 )*/ ); /* kdDebug() << " converted start date: " << appointment->startDate << endl;*/ @@ -145,9 +145,9 @@ ngwt__Appointment* IncidenceConverter::convertToAppointment( KCal::Event* event kdDebug() << " event start date not valid " << endl; if ( event->hasEndDate() ) { // kdDebug() << " convertToAppointment() raw end date: " << event->dtEnd().toString() << endl; - QDateTime end = event->dtEnd(); + TQDateTime end = event->dtEnd(); end = end.addDays( 1 ); - end.setTime( QTime( 0, 0, 0 ) ); + end.setTime( TQTime( 0, 0, 0 ) ); appointment->endDate = qDateTimeToChar( end, mTimezone ); //appointment->endDay = qDateToString( event->dtEnd().date() ); // kdDebug() << " converted end date:" << appointment->endDate << endl; @@ -215,7 +215,7 @@ KCal::Todo* IncidenceConverter::convertFromTask( ngwt__Task* task ) } if ( task->taskPriority ) { - QString priority = stringToQString( task->taskPriority ); + TQString priority = stringToQString( task->taskPriority ); // FIXME: Store priority string somewhere @@ -256,7 +256,7 @@ ngwt__Task* IncidenceConverter::convertToTask( KCal::Todo* todo ) } // FIXME: Restore custom priorities - QString priority = QString::number( todo->priority() ); + TQString priority = TQString::number( todo->priority() ); task->taskPriority = qStringToString( priority ); task->completed = (bool*)soap_malloc( soap(), 1 ); @@ -311,7 +311,7 @@ ngwt__Note* IncidenceConverter::convertToNote( KCal::Journal* journal ) } if ( !note->subject ) - note->subject = qStringToString( QString("NO SUBJECT") ); + note->subject = qStringToString( TQString("NO SUBJECT") ); return note; } @@ -362,7 +362,7 @@ bool IncidenceConverter::convertToCalendarItem( KCal::Incidence* incidence, ngwt item->modified = 0; item->changes = 0; - QString id = incidence->customProperty( "GWRESOURCE", "UID" ); + TQString id = incidence->customProperty( "GWRESOURCE", "UID" ); if ( !id.isEmpty() ) item->id = qStringToString( id ); // Container @@ -449,7 +449,7 @@ void IncidenceConverter::setAttendees( KCal::Incidence *incidence, if ( !mFromEmail.isEmpty() ) item->distribution->from->email = qStringToString( mFromEmail ); if ( !mFromUuid.isEmpty() ) item->distribution->from->uuid = qStringToString( mFromUuid ); - QString to; // To list consists of display names of organizer and attendees separated by "; " + TQString to; // To list consists of display names of organizer and attendees separated by "; " to += incidence->organizer().name(); item->distribution->sendoptions = soap_new_ngwt__SendOptions( soap(), -1 ); @@ -470,11 +470,11 @@ void IncidenceConverter::setAttendees( KCal::Incidence *incidence, KCal::Attendee::List::ConstIterator it; for( it = attendees.begin(); it != attendees.end(); ++it ) { if ( !to.isEmpty() ) - to += QString::fromLatin1( "; %1" ).arg( (*it)->name() ); + to += TQString::fromLatin1( "; %1" ).arg( (*it)->name() ); kdDebug() << "IncidenceConverter::setAttendees(), adding " << (*it)->fullName() << endl; - QString uuid; - QValueList<KABC::Addressee> addList = KABC::StdAddressBook::self()->findByEmail( (*it)->email() ); + TQString uuid; + TQValueList<KABC::Addressee> addList = KABC::StdAddressBook::self()->findByEmail( (*it)->email() ); if ( !addList.first().isEmpty() ) uuid = addList.first().custom( "GWRESOURCE", "UUID" ); //uuid may be mandatory for the recipients list to be stored on the server... item->distribution->recipients->recipient.push_back( createRecipient( (*it)->name(), (*it)->email(), uuid ) ); @@ -484,8 +484,8 @@ void IncidenceConverter::setAttendees( KCal::Incidence *incidence, item->distribution->bc = 0; } -ngwt__Recipient *IncidenceConverter::createRecipient( const QString &name, - const QString &email, const QString &uuid ) +ngwt__Recipient *IncidenceConverter::createRecipient( const TQString &name, + const TQString &email, const TQString &uuid ) { ngwt__Recipient *recipient = soap_new_ngwt__Recipient( soap(), -1 ); @@ -534,7 +534,7 @@ bool IncidenceConverter::convertFromCalendarItem( ngwt__CalendarItem* item, getAttendees( item, incidence ); if ( item->recurrenceKey ) - incidence->setCustomProperty( "GWRESOURCE", "RECURRENCEKEY", QString::number( *item->recurrenceKey ) ); + incidence->setCustomProperty( "GWRESOURCE", "RECURRENCEKEY", TQString::number( *item->recurrenceKey ) ); /* // This must just be a very early cut at recurrence @@ -543,7 +543,7 @@ bool IncidenceConverter::convertFromCalendarItem( ngwt__CalendarItem* item, std::vector<xsd__date>::const_iterator it; for ( it = dateList->begin(); it != dateList->end(); ++it ) { - QDate date = QDate::fromString( s2q( *it ), Qt::ISODate ); + TQDate date = TQDate::fromString( s2q( *it ), Qt::ISODate ); if ( date.isValid() ) } } @@ -568,7 +568,7 @@ void IncidenceConverter::getItemDescription( ngwt__CalendarItem *item, KCal::Inc // text/plain should be the description if ( stringToQString( (*it)->contentType ) == "text/plain" ) { - QString description = QString::fromUtf8( (char*)data.__ptr, data.__size ); + TQString description = TQString::fromUtf8( (char*)data.__ptr, data.__size ); incidence->setDescription( description ); kdDebug() << "Incidence description decodes to: " << description << endl; return; @@ -731,7 +731,7 @@ void IncidenceConverter::setRecurrence( KCal::Incidence * incidence, ngwt__Calen *freq = Weekly; item->rrule->frequency = freq; // now change the bitArray of the days of the week that it recurs on to a ngwt__DayOfWeekList * - QBitArray ba = recur->days(); + TQBitArray ba = recur->days(); ngwt__DayOfYearWeekList * weeklyDays = soap_new_ngwt__DayOfYearWeekList( soap(), -1 ); for ( int i = 0; i < 7; ++i ) { @@ -795,11 +795,11 @@ void IncidenceConverter::setRecurrence( KCal::Incidence * incidence, ngwt__Calen // TODO: translate '1st sunday in may' ngwt__DayOfYearList * daysOfYear = soap_new_ngwt__DayOfYearList( soap(), -1 ); #if LIBKCAL_IS_VERSION( 1, 3, 0 ) - QValueList<int> rmd; + TQValueList<int> rmd; rmd = recur->yearMonths(); daysOfYear->day.push_back( rmd.first() ); #else - QPtrList<int> rmd; + TQPtrList<int> rmd; rmd = recur->yearNums(); daysOfYear->day.push_back( *rmd.first() ); #endif |