diff options
Diffstat (limited to 'src/tools/qfileinfo_unix.cpp')
-rw-r--r-- | src/tools/qfileinfo_unix.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/qfileinfo_unix.cpp b/src/tools/qfileinfo_unix.cpp index cddb8f9..342303d 100644 --- a/src/tools/qfileinfo_unix.cpp +++ b/src/tools/qfileinfo_unix.cpp @@ -277,9 +277,9 @@ uint QFileInfo::groupId() const \code QFileInfo fi( "/tmp/archive.tar.gz" ); if ( fi.permission( QFileInfo::WriteUser | QFileInfo::ReadGroup ) ) - qWarning( "I can change the file; my group can read the file" ); + tqWarning( "I can change the file; my group can read the file" ); if ( fi.permission( QFileInfo::WriteGroup | QFileInfo::WriteOther ) ) - qWarning( "The group or others can change the file" ); + tqWarning( "The group or others can change the file" ); \endcode \sa isReadable(), isWritable(), isExecutable() @@ -319,7 +319,7 @@ bool QFileInfo::permission( int permissionSpec ) const return (fic->st.st_mode & mask) == mask; } else { #if defined(QT_CHECK_NULL) - qWarning( "QFileInfo::permission: permissionSpec is 0" ); + tqWarning( "QFileInfo::permission: permissionSpec is 0" ); #endif return TRUE; } |