summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdesktopwidget.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/tqdesktopwidget.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/tqdesktopwidget.html')
-rw-r--r--doc/html/tqdesktopwidget.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tqdesktopwidget.html b/doc/html/tqdesktopwidget.html
index a32e86fa2..f9bf3d4b4 100644
--- a/doc/html/tqdesktopwidget.html
+++ b/doc/html/tqdesktopwidget.html
@@ -123,8 +123,8 @@ This is an overloaded member function, provided for convenience. It behaves esse
<h3 class=fn>bool <a name="isVirtualDesktop"></a>TQDesktopWidget::isVirtualDesktop () const
</h3>
-Returns TRUE if the system manages the available screens in a
-virtual desktop; otherwise returns FALSE.
+Returns true if the system manages the available screens in a
+virtual desktop; otherwise returns false.
<p> For virtual desktops, <a href="#screen">screen</a>() will always return the same widget.
The size of the virtual desktop is the size of this desktop
widget.
@@ -149,7 +149,7 @@ Returns a widget that represents the screen with index <em>screen</em>.
This widget can be used to draw directly on the desktop, using an
unclipped painter like this:
<p> <pre>
- <a href="tqpainter.html">TQPainter</a> paint( TQApplication::<a href="tqapplication.html#desktop">desktop</a>()-&gt;screen( 0 ), TRUE );
+ <a href="tqpainter.html">TQPainter</a> paint( TQApplication::<a href="tqapplication.html#desktop">desktop</a>()-&gt;screen( 0 ), true );
paint.draw...
...
paint.<a href="tqpainter.html#end">end</a>();