summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdragobject.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqdragobject.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-rename/true-false-4.tar.gz
tqt-rename/true-false-4.zip
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqdragobject.html')
-rw-r--r--doc/html/tqdragobject.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqdragobject.html b/doc/html/tqdragobject.html
index f234e07bd..5d0a6140b 100644
--- a/doc/html/tqdragobject.html
+++ b/doc/html/tqdragobject.html
@@ -110,9 +110,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="tquridrag.html">TQUriDrag</a> are references) then the return value should always
be ignored, as the target is expected to manipulate the
@@ -133,10 +133,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.