summaryrefslogtreecommitdiffstats
path: root/kdirstat/kstdcleanup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdirstat/kstdcleanup.cpp')
-rw-r--r--kdirstat/kstdcleanup.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdirstat/kstdcleanup.cpp b/kdirstat/kstdcleanup.cpp
index 9898410..1c9dea5 100644
--- a/kdirstat/kstdcleanup.cpp
+++ b/kdirstat/kstdcleanup.cpp
@@ -22,7 +22,7 @@ KStdCleanup::openInKonqueror( TDEActionCollection *parent )
"kfmclient openURL %p",
i18n( "Open in &Konqueror" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( true );
cleanup->setWorksForDotEntry( true );
@@ -42,7 +42,7 @@ KStdCleanup::openInTerminal( TDEActionCollection *parent )
"konsole",
i18n( "Open in &Terminal" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( true );
cleanup->setWorksForDotEntry( true );
@@ -61,7 +61,7 @@ KStdCleanup::compressSubtree( TDEActionCollection *parent )
"cd ..; tar cjvf %n.tar.bz2 %n && rm -rf %n",
i18n( "&Compress" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( false );
cleanup->setWorksForDotEntry( false );
@@ -79,7 +79,7 @@ KStdCleanup::makeClean( TDEActionCollection *parent )
"make clean",
i18n( "&make clean" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( false );
cleanup->setWorksForDotEntry( true );
@@ -96,7 +96,7 @@ KStdCleanup::deleteTrash( TDEActionCollection *parent )
"rm -f *.o *~ *.bak *.auto core",
i18n( "Delete T&rash Files" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( false );
cleanup->setWorksForDotEntry( true );
@@ -114,7 +114,7 @@ KStdCleanup::moveToTrashBin( TDEActionCollection *parent )
"kfmclient move %p %t",
i18n( "Delete (to Trash &Bin)" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( true );
cleanup->setWorksForDotEntry( false );
@@ -133,7 +133,7 @@ KStdCleanup::hardDelete( TDEActionCollection *parent )
"rm -rf %p",
i18n( "&Delete (no way to undelete!)" ),
parent );
- CHECK_PTR( cleanup );
+ TQ_CHECK_PTR( cleanup );
cleanup->setWorksForDir ( true );
cleanup->setWorksForFile ( true );
cleanup->setWorksForDotEntry( false );