diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 721c5c4ee3dcee163a2b0f7fd94cb3689154c1bd (patch) | |
tree | d775ffe309859e438c3fcac0825c8f7c9d384c81 /src/fileaccess.cpp | |
parent | 5173e6fcb16310e130fba4143e334563b4f8460e (diff) | |
download | kdiff3-721c5c4ee3dcee163a2b0f7fd94cb3689154c1bd.tar.gz kdiff3-721c5c4ee3dcee163a2b0f7fd94cb3689154c1bd.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdiff3@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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(); } |