diff options
Diffstat (limited to 'src/fileaccess.cpp')
-rw-r--r-- | src/fileaccess.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fileaccess.cpp b/src/fileaccess.cpp index b2457a9..c2be1dc 100644 --- a/src/fileaccess.cpp +++ b/src/fileaccess.cpp @@ -211,7 +211,7 @@ void FileAccess::addPath( const TQString& txt ) } /* Filetype: - S_IFMT 0170000 bittqmask for the file type bitfields + S_IFMT 0170000 bitmask for the file type bitfields S_IFSOCK 0140000 socket S_IFLNK 0120000 symbolic link S_IFREG 0100000 regular file @@ -224,15 +224,15 @@ void FileAccess::addPath( const TQString& txt ) S_ISVTX 0001000 sticky bit (see below) Access: - S_IRWXU 00700 tqmask for file owner permissions + S_IRWXU 00700 mask for file owner permissions S_IRUSR 00400 owner has read permission S_IWUSR 00200 owner has write permission S_IXUSR 00100 owner has execute permission - S_IRWXG 00070 tqmask for group permissions + S_IRWXG 00070 mask for group permissions S_IRGRP 00040 group has read permission S_IWGRP 00020 group has write permission S_IXGRP 00010 group has execute permission - S_IRWXO 00007 tqmask for permissions for others (not in group) + S_IRWXO 00007 mask for permissions for others (not in group) S_IROTH 00004 others have read permission S_IWOTH 00002 others have write permisson S_IXOTH 00001 others have execute permission @@ -316,7 +316,7 @@ bool FileAccess::isExecutable() const { return m_bExecutable; } bool FileAccess::isHidden() const { return m_bHidden; } TQString FileAccess::readLink() const { return m_linkTarget; } TQString FileAccess::absFilePath() const{ return m_absFilePath; } // Full abs path -TQString FileAccess::fileName() const { return m_name; } // Just the name-part of the path, without tqparent directories +TQString FileAccess::fileName() const { return m_name; } // Just the name-part of the path, without parent directories TQString FileAccess::filePath() const { return m_path; } // The path-string that was used during construction TQString FileAccess::prettyAbsPath() const { return isLocal() ? m_absFilePath : m_url.prettyURL(); } |