diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/tools/qfileinfo_unix.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
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; } |