From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqiconfactory.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tqiconfactory.html') diff --git a/doc/html/tqiconfactory.html b/doc/html/tqiconfactory.html index f8bada21e..f2e8e966d 100644 --- a/doc/html/tqiconfactory.html +++ b/doc/html/tqiconfactory.html @@ -53,7 +53,7 @@ body { background: #ffffff; color: black; } The TQIconFactory class is used to create pixmaps for a TQIconSet.

By reimplementing createPixmap(), you can override TQIconSet's default algorithm for computing pixmaps not supplied by the user. -

Call setAutoDelete(TRUE) if you want the factory to automatically +

Call setAutoDelete(true) if you want the factory to automatically delete itself when it is no longer needed by TQIconSet.

See also TQIconSet and Advanced Widgets. @@ -69,7 +69,7 @@ Destroys the object and frees any allocated resources.

bool TQIconFactory::autoDelete () const

-

Returns TRUE if auto-deletion is enabled; otherwise returns FALSE. +

Returns true if auto-deletion is enabled; otherwise returns false.

See also setAutoDelete().

TQPixmap * TQIconFactory::createPixmap ( const TQIconSet & iconSet, TQIconSet::Size size, TQIconSet::Mode mode, TQIconSet::State state ) [virtual] @@ -92,9 +92,9 @@ Replaces the default icon factory with factory.

void TQIconFactory::setAutoDelete ( bool autoDelete )

-

If autoDelete is TRUE, sets the icon factory to automatically +

If autoDelete is true, sets the icon factory to automatically delete itself when it is no longer referenced by any TQIconSet and -isn't the default factory. If autoDelete is FALSE (the default) +isn't the default factory. If autoDelete is false (the default) auto-deletion is disabled.

See also autoDelete() and defaultFactory(). -- cgit v1.2.3