summaryrefslogtreecommitdiffstats
path: root/kdirstat/kdirtree.cpp
diff options
context:
space:
mode:
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 );
}