diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-13 09:38:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-15 18:46:42 +0900 |
commit | ad58630b34fc61754c763cf951004ef27e38d33d (patch) | |
tree | 168cf1d101c4583c84d02c116cd305763118277b /tdeioslave/file/file.cpp | |
parent | bedc43ef09d9569fb7643849e8f24dd46c379eba (diff) | |
download | tdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.tar.gz tdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeioslave/file/file.cpp')
-rw-r--r-- | tdeioslave/file/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/file/file.cpp b/tdeioslave/file/file.cpp index d404b8ab4..162f8a848 100644 --- a/tdeioslave/file/file.cpp +++ b/tdeioslave/file/file.cpp @@ -638,7 +638,7 @@ void FileProtocol::copy( const KURL &src, const KURL &dest, return; } - // If the destination is a symlink and overwrite is TRUE, + // If the destination is a symlink and overwrite is true, // remove the symlink first to prevent the scenario where // the symlink actually points to current source! if (_overwrite && S_ISLNK(buff_dest.st_mode)) |