summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdatasource.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/tqdatasource.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/tqdatasource.html')
-rw-r--r--doc/html/tqdatasource.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqdatasource.html b/doc/html/tqdatasource.html
index f31e7832f..a94e7ac51 100644
--- a/doc/html/tqdatasource.html
+++ b/doc/html/tqdatasource.html
@@ -60,14 +60,14 @@ it is currently able to provide.
<hr><h2>Member Function Documentation</h2>
<h3 class=fn>void <a name="enableRewind"></a>TQDataSource::enableRewind ( bool&nbsp;on )<tt> [virtual]</tt>
</h3>
-If this function is called with <em>on</em> set to TRUE, and <a href="#rewindable">rewindable</a>()
-is TRUE, then the data source must take measures to allow the <a href="#rewind">rewind</a>()
-function to subsequently operate as described. If rewindable() is FALSE,
+If this function is called with <em>on</em> set to true, and <a href="#rewindable">rewindable</a>()
+is true, then the data source must take measures to allow the <a href="#rewind">rewind</a>()
+function to subsequently operate as described. If rewindable() is false,
the function should call <a href="#enableRewind">TQDataSource::enableRewind</a>(), which aborts with
a <a href="tqapplication.html#qFatal">tqFatal</a>() error.
<p> For example, a network connection may choose to use a disk cache
of input only if rewinding is enabled before the first buffer-full of
-data is discarded, returning FALSE in rewindable() if that first buffer
+data is discarded, returning false in rewindable() if that first buffer
is discarded.
<p>Reimplemented in <a href="tqiodevicesource.html#enableRewind">TQIODeviceSource</a>.
@@ -87,13 +87,13 @@ able to provide any more data (until after a <a href="#rewind">rewind</a>()), it
<h3 class=fn>void <a name="rewind"></a>TQDataSource::rewind ()<tt> [virtual]</tt>
</h3>
This function rewinds the data source. This may only be called if
-<a href="#enableRewind">enableRewind</a>(TRUE) has been previously called.
+<a href="#enableRewind">enableRewind</a>(true) has been previously called.
<p>Reimplemented in <a href="tqiodevicesource.html#rewind">TQIODeviceSource</a>.
<h3 class=fn>bool <a name="rewindable"></a>TQDataSource::rewindable () const<tt> [virtual]</tt>
</h3>
-This function should return TRUE if the data source can be rewound.
-<p> The default returns FALSE.
+This function should return true if the data source can be rewound.
+<p> The default returns false.
<p>Reimplemented in <a href="tqiodevicesource.html#rewindable">TQIODeviceSource</a>.
<h3 class=fn>void <a name="sendTo"></a>TQDataSource::sendTo ( <a href="tqdatasink.html">TQDataSink</a>&nbsp;*, int&nbsp;count )<tt> [pure virtual]</tt>