diff options
Diffstat (limited to 'korganizer/incidencechanger.cpp')
-rw-r--r-- | korganizer/incidencechanger.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/incidencechanger.cpp b/korganizer/incidencechanger.cpp index d440f0842..623eaa944 100644 --- a/korganizer/incidencechanger.cpp +++ b/korganizer/incidencechanger.cpp @@ -97,10 +97,10 @@ kdDebug(5850)<<"IncidenceChanger::deleteIncidence for incidence \""<<incidence-> emit incidenceToBeDeleted( incidence ); doDelete = mCalendar->deleteIncidence( incidence ); if ( !KOPrefs::instance()->thatIsMe( tmp->organizer().email() ) ) { - const QStringList myEmails = KOPrefs::instance()->allEmails(); + const TQStringList myEmails = KOPrefs::instance()->allEmails(); bool notifyOrganizer = false; - for ( QStringList::ConstIterator it = myEmails.begin(); it != myEmails.end(); ++it ) { - QString email = *it; + for ( TQStringList::ConstIterator it = myEmails.begin(); it != myEmails.end(); ++it ) { + TQString email = *it; Attendee *me = tmp->attendeeByMail(email); if ( me ) { if ( me->status() == KCal::Attendee::Accepted || me->status() == KCal::Attendee::Delegated ) @@ -314,7 +314,7 @@ kdDebug(5850)<<"IncidenceChanger::changeIncidence for incidence \""<<newinc->sum return true; } -bool IncidenceChanger::addIncidence( Incidence *incidence, QWidget *parent ) +bool IncidenceChanger::addIncidence( Incidence *incidence, TQWidget *parent ) { kdDebug(5850)<<"IncidenceChanger::addIncidence for incidence \""<<incidence->summary()<<"\""<<endl; if ( KOPrefs::instance()->mUseGroupwareCommunication ) { @@ -329,7 +329,7 @@ kdDebug(5850)<<"IncidenceChanger::addIncidence for incidence \""<<incidence->sum // in the calendar, only in the CalendarResources::DestinationPolicy // So we need to type-cast it and extract it from the CalendarResources CalendarResources *stdcal = dynamic_cast<CalendarResources*>(mCalendar); - QWidget *tmpparent = 0; + TQWidget *tmpparent = 0; if ( stdcal ) { tmpparent = stdcal->dialogParentWidget(); stdcal->setDialogParentWidget( parent ); |