diff options
Diffstat (limited to 'korganizer/actionmanager.cpp')
-rw-r--r-- | korganizer/actionmanager.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/actionmanager.cpp b/korganizer/actionmanager.cpp index 52e47d57b..741a04f86 100644 --- a/korganizer/actionmanager.cpp +++ b/korganizer/actionmanager.cpp @@ -754,9 +754,9 @@ void ActionManager::file_icalimport() return; } - KProcess proc; + TDEProcess proc; proc << "ical2vcal" << tmpfn.name(); - bool success = proc.start( KProcess::Block ); + bool success = proc.start( TDEProcess::Block ); if ( !success ) { kdDebug(5850) << "Error starting ical2vcal." << endl; @@ -1290,11 +1290,11 @@ void ActionManager::setDestinationPolicy() void ActionManager::configureDateTime() { - KProcess *proc = new KProcess; + TDEProcess *proc = new TDEProcess; *proc << "kcmshell" << "language"; - connect( proc,TQT_SIGNAL( processExited( KProcess * ) ), - TQT_SLOT( configureDateTimeFinished( KProcess * ) ) ); + connect( proc,TQT_SIGNAL( processExited( TDEProcess * ) ), + TQT_SLOT( configureDateTimeFinished( TDEProcess * ) ) ); if ( !proc->start() ) { KMessageBox::sorry( dialogParent(), @@ -1405,7 +1405,7 @@ bool ActionManager::addIncidence( const TQString& ical ) return mCalendarView->addIncidence( ical ); } -void ActionManager::configureDateTimeFinished( KProcess *proc ) +void ActionManager::configureDateTimeFinished( TDEProcess *proc ) { delete proc; } @@ -1875,7 +1875,7 @@ void ActionManager::goDate( const TQDate& date ) void ActionManager::goDate( const TQString& date ) { - goDate( KGlobal::locale()->readDate( date ) ); + goDate( TDEGlobal::locale()->readDate( date ) ); } void ActionManager::showDate(const TQDate & date) |