summaryrefslogtreecommitdiffstats
path: root/kdirstat/kdirtree.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/kdirtree.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/kdirtree.cpp')
-rw-r--r--kdirstat/kdirtree.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdirstat/kdirtree.cpp b/kdirstat/kdirtree.cpp
index 6bb6360..8bab620 100644
--- a/kdirstat/kdirtree.cpp
+++ b/kdirstat/kdirtree.cpp
@@ -55,7 +55,7 @@ KFileInfo::KFileInfo( const TQString & filenameWithoutPath,
, _next( 0 )
, _tree( tree )
{
- CHECK_PTR( statInfo );
+ TQ_CHECK_PTR( statInfo );
_isLocalFile = true;
_name = filenameWithoutPath;
@@ -107,7 +107,7 @@ KFileInfo::KFileInfo( const KFileItem * fileItem,
, _next( 0 )
, _tree( tree )
{
- CHECK_PTR( fileItem );
+ TQ_CHECK_PTR( fileItem );
_isLocalFile = fileItem->isLocalFile();
_name = parent ? fileItem->name() : fileItem->url().url();
@@ -576,7 +576,7 @@ KDirInfo::isBusy()
void
KDirInfo::insertChild( KFileInfo *newChild )
{
- CHECK_PTR( newChild );
+ TQ_CHECK_PTR( newChild );
if ( newChild->isDir() || _dotEntry == 0 || _isDotEntry )
{
@@ -1499,7 +1499,7 @@ KDirTree::deleteSubtree( KFileInfo *subtree )
void
KDirTree::addJob( KDirReadJob * job )
{
- CHECK_PTR( job );
+ TQ_CHECK_PTR( job );
_jobQueue.enqueue( job );
}