summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqdragobject.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/ntqdragobject.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqdragobject.html')
-rw-r--r--doc/html/ntqdragobject.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/ntqdragobject.html b/doc/html/ntqdragobject.html
index f6444ac78..cc7221275 100644
--- a/doc/html/ntqdragobject.html
+++ b/doc/html/ntqdragobject.html
@@ -111,9 +111,9 @@ which it is involved, and frees up the storage used.
</h3>
Starts a drag operation using the contents of this object, using
DragDefault mode.
-<p> The function returns TRUE if the caller should delete the original
+<p> The function returns true if the caller should delete the original
copy of the dragged data (but see <a href="#target">target</a>()); otherwise returns
-FALSE.
+false.
<p> If the drag contains <em>references</em> to information (e.g. file names
in a <a href="quridrag.html">TQUriDrag</a> are references) then the return value should always
be ignored, as the target is expected to manipulate the
@@ -134,10 +134,10 @@ 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.
-<p> Returns TRUE if the dragged data was dragged as a <em>move</em>,
+<p> Returns true if the dragged data was dragged as a <em>move</em>,
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 false.
<p> The <em>mode</em> specifies the drag mode (see
<a href="#DragMode-enum">TQDragObject::DragMode</a>.) Normally one of the simpler <a href="#drag">drag</a>(),
<a href="#dragMove">dragMove</a>(), or <a href="#dragCopy">dragCopy</a>() functions would be used instead.