diff options
Diffstat (limited to 'src/tools/qdir_unix.cpp')
-rw-r--r-- | src/tools/qdir_unix.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/qdir_unix.cpp b/src/tools/qdir_unix.cpp index 5c0c393..65a745c 100644 --- a/src/tools/qdir_unix.cpp +++ b/src/tools/qdir_unix.cpp @@ -142,7 +142,7 @@ bool QDir::rename( const QString &name, const QString &newName, { if ( name.isEmpty() || newName.isEmpty() ) { #if defined(QT_CHECK_NULL) - qWarning( "QDir::rename: Empty or null file name(s)" ); + tqWarning( "QDir::rename: Empty or null file name(s)" ); #endif return FALSE; } @@ -178,11 +178,11 @@ QString QDir::currentDirPath() #endif /* __GLIBC__ && !PATH_MAX */ #if defined(QT_DEBUG) if ( result.isNull() ) - qWarning( "QDir::currentDirPath: getcwd() failed" ); + tqWarning( "QDir::currentDirPath: getcwd() failed" ); #endif } else { #if defined(QT_DEBUG) - qWarning( "QDir::currentDirPath: stat(\".\") failed" ); + tqWarning( "QDir::currentDirPath: stat(\".\") failed" ); #endif } slashify( result ); @@ -269,7 +269,7 @@ bool QDir::readDirEntries( const QString &nameFilter, } if ( closedir(dir) != 0 ) { #if defined(QT_CHECK_NULL) - qWarning( "QDir::readDirEntries: Cannot close the directory: %s", + tqWarning( "QDir::readDirEntries: Cannot close the directory: %s", dPath.local8Bit().data() ); #endif } |