summaryrefslogtreecommitdiffstats
path: root/src/tools/qfileinfo_unix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qfileinfo_unix.cpp')
-rw-r--r--src/tools/qfileinfo_unix.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/qfileinfo_unix.cpp b/src/tools/qfileinfo_unix.cpp
index 5f10a2074..a78452fdf 100644
--- a/src/tools/qfileinfo_unix.cpp
+++ b/src/tools/qfileinfo_unix.cpp
@@ -277,9 +277,9 @@ uint TQFileInfo::groupId() const
\code
TQFileInfo fi( "/tmp/archive.tar.gz" );
if ( fi.permission( TQFileInfo::WriteUser | TQFileInfo::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( TQFileInfo::WriteGroup | TQFileInfo::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 TQFileInfo::permission( int permissionSpec ) const
return (fic->st.st_mode & mask) == mask;
} else {
#if defined(QT_CHECK_NULL)
- qWarning( "TQFileInfo::permission: permissionSpec is 0" );
+ tqWarning( "TQFileInfo::permission: permissionSpec is 0" );
#endif
return TRUE;
}