summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdragobject.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-26 11:44:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-30 14:26:34 +0900
commit6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch)
tree0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqdragobject.3qt
parentff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff)
downloadtqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz
tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdragobject.3qt')
-rw-r--r--doc/man/man3/tqdragobject.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/tqdragobject.3qt b/doc/man/man3/tqdragobject.3qt
index 4dc6db558..fcb891a8e 100644
--- a/doc/man/man3/tqdragobject.3qt
+++ b/doc/man/man3/tqdragobject.3qt
@@ -101,7 +101,7 @@ Destroys the drag object, canceling any drag and drop operation in which it is i
.SH "bool TQDragObject::drag ()"
Starts a drag operation using the contents of this object, using DragDefault mode.
.PP
-The function returns TRUE if the caller should delete the original copy of the dragged data (but see target()); otherwise returns FALSE.
+The function returns true if the caller should delete the original copy of the dragged data (but see target()); otherwise returns false.
.PP
If the drag contains \fIreferences\fR to information (e.g. file names in a TQUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source \fImust not\fR delete the files!)
.PP
@@ -115,7 +115,7 @@ Starts a drag operation using the contents of this object.
.PP
At this point, the object becomes owned by Qt, not the application. You should not delete the drag object or anything it references. The actual transfer of data to the target application will be done during future event processing - after that time the drag object will be deleted.
.PP
-Returns TRUE if the dragged data was dragged as a \fImove\fR, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns FALSE.
+Returns true if the dragged data was dragged as a \fImove\fR, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns false.
.PP
The \fImode\fR specifies the drag mode (see TQDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead.
.SH "void TQDragObject::dragCopy ()"