summaryrefslogtreecommitdiffstats
path: root/kdirstat/kstdcleanup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-27 23:55:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-27 23:55:06 +0900
commit0cd4d565764dd403047d804844da868c592298e4 (patch)
treedfeb4fc6aab6d6bbdb80ae805afbab0c0aaa45f0 /kdirstat/kstdcleanup.cpp
parent8df1e285ac63de5d6f1a1ec7b6bd125a2de2bbe9 (diff)
downloadkdirstat-0cd4d565764dd403047d804844da868c592298e4.tar.gz
kdirstat-0cd4d565764dd403047d804844da868c592298e4.zip
Removed obsolete CHECK_PTR and replaced CHECK_PTR/Q_CHECK_PTR with TQ_CHECK_PTR.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 );