summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqdesktopwidget.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/ntqdesktopwidget.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/ntqdesktopwidget.html')
-rw-r--r--doc/html/ntqdesktopwidget.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ntqdesktopwidget.html b/doc/html/ntqdesktopwidget.html
index e404289c6..61906bc4d 100644
--- a/doc/html/ntqdesktopwidget.html
+++ b/doc/html/ntqdesktopwidget.html
@@ -124,8 +124,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.
@@ -150,7 +150,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="ntqpainter.html">TQPainter</a> paint( TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;screen( 0 ), TRUE );
+ <a href="ntqpainter.html">TQPainter</a> paint( TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;screen( 0 ), true );
paint.draw...
...
paint.<a href="ntqpainter.html#end">end</a>();