summaryrefslogtreecommitdiffstats
path: root/kdirstat/kcleanup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdirstat/kcleanup.cpp')
-rw-r--r--kdirstat/kcleanup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdirstat/kcleanup.cpp b/kdirstat/kcleanup.cpp
index d9e738e..929cc36 100644
--- a/kdirstat/kcleanup.cpp
+++ b/kdirstat/kcleanup.cpp
@@ -319,7 +319,7 @@ KCleanup::expandVariables( const KFileInfo * item,
if ( KDE::versionMajor() >= 3 && KDE::versionMinor() >= 4 )
expanded.replace( TQRegExp( "%t" ), "trash:/" );
else
- expanded.replace( TQRegExp( "%t" ), KGlobalSettings::trashPath() );
+ expanded.replace( TQRegExp( "%t" ), TDEGlobalSettings::trashPath() );
return expanded;
}
@@ -329,7 +329,7 @@ void
KCleanup::runCommand ( const KFileInfo * item,
const TQString & command ) const
{
- KProcess proc;
+ TDEProcess proc;
KDirSaver dir( itemDir( item ) );
TQString cmd( expandVariables( item, command ));
@@ -356,7 +356,7 @@ KCleanup::runCommand ( const KFileInfo * item,
// finish, so we are starting the command as a pure
// background process.
- proc.start( KProcess::DontCare );
+ proc.start( TDEProcess::DontCare );
break;
@@ -369,7 +369,7 @@ KCleanup::runCommand ( const KFileInfo * item,
// process in blocking mode.
TQApplication::setOverrideCursor( waitCursor );
- proc.start( KProcess::Block );
+ proc.start( TDEProcess::Block );
TQApplication::restoreOverrideCursor();
break;
}