diff options
Diffstat (limited to 'src/tools/qdir_unix.cpp')
-rw-r--r-- | src/tools/qdir_unix.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qdir_unix.cpp b/src/tools/qdir_unix.cpp index 54ca9df56..7f316ad71 100644 --- a/src/tools/qdir_unix.cpp +++ b/src/tools/qdir_unix.cpp @@ -142,7 +142,7 @@ bool TQDir::rename( const TQString &name, const TQString &newName, { if ( name.isEmpty() || newName.isEmpty() ) { #if defined(QT_CHECK_NULL) - qWarning( "TQDir::rename: Empty or null file name(s)" ); + tqWarning( "TQDir::rename: Empty or null file name(s)" ); #endif return FALSE; } @@ -178,11 +178,11 @@ TQString TQDir::currentDirPath() #endif /* __GLIBC__ && !PATH_MAX */ #if defined(QT_DEBUG) if ( result.isNull() ) - qWarning( "TQDir::currentDirPath: getcwd() failed" ); + tqWarning( "TQDir::currentDirPath: getcwd() failed" ); #endif } else { #if defined(QT_DEBUG) - qWarning( "TQDir::currentDirPath: stat(\".\") failed" ); + tqWarning( "TQDir::currentDirPath: stat(\".\") failed" ); #endif } slashify( result ); @@ -269,7 +269,7 @@ bool TQDir::readDirEntries( const TQString &nameFilter, } if ( closedir(dir) != 0 ) { #if defined(QT_CHECK_NULL) - qWarning( "TQDir::readDirEntries: Cannot close the directory: %s", + tqWarning( "TQDir::readDirEntries: Cannot close the directory: %s", dPath.local8Bit().data() ); #endif } @@ -312,8 +312,8 @@ const TQFileInfoList * TQDir::drives() if ( !knownMemoryLeak ) { #ifdef QT_THREAD_SUPPORT - TQMutexLocker locker( qt_global_mutexpool ? - qt_global_mutexpool->get( &knownMemoryLeak ) : 0 ); + TQMutexLocker locker( tqt_global_mutexpool ? + tqt_global_mutexpool->get( &knownMemoryLeak ) : 0 ); #endif // QT_THREAD_SUPPORT if ( !knownMemoryLeak ) { |