diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqdesktopwidget.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-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.html | 6 |
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>()->screen( 0 ), TRUE ); + <a href="tqpainter.html">TQPainter</a> paint( TQApplication::<a href="tqapplication.html#desktop">desktop</a>()->screen( 0 ), true ); paint.draw... ... paint.<a href="tqpainter.html#end">end</a>(); |