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/tqapplication.html | 152 ++++++++++++++++++++++---------------------- 1 file changed, 76 insertions(+), 76 deletions(-) (limited to 'doc/html/tqapplication.html') diff --git a/doc/html/tqapplication.html b/doc/html/tqapplication.html index 30de0a415..12d312087 100644 --- a/doc/html/tqapplication.html +++ b/doc/html/tqapplication.html @@ -83,7 +83,7 @@ flow and main settings.
  • virtual void saveState ( TQSessionManager & sm )
  • void wakeUpCoreThread ()
  • void lock ()
  • -
  • void unlock ( bool wakeUpCore = TRUE )
  • +
  • void unlock ( bool wakeUpCore = true )
  • bool locked ()
  • bool tryLock ()
  • @@ -107,14 +107,14 @@ flow and main settings.
  • int colorSpec ()
  • void setColorSpec ( int spec )
  • TQCursor * overrideCursor ()
  • -
  • void setOverrideCursor ( const TQCursor & cursor, bool replace = FALSE )
  • +
  • void setOverrideCursor ( const TQCursor & cursor, bool replace = false )
  • void restoreOverrideCursor ()
  • bool hasGlobalMouseTracking ()
  • void setGlobalMouseTracking ( bool enable )
  • TQPalette palette ( const TQWidget * w = 0 )
  • -
  • void setPalette ( const TQPalette & palette, bool informWidgets = FALSE, const char * className = 0 )
  • +
  • void setPalette ( const TQPalette & palette, bool informWidgets = false, const char * className = 0 )
  • TQFont font ( const TQWidget * w = 0 )
  • -
  • void setFont ( const TQFont & font, bool informWidgets = FALSE, const char * className = 0 )
  • +
  • void setFont ( const TQFont & font, bool informWidgets = false, const char * className = 0 )
  • TQFontMetrics fontMetrics ()
  • TQWidgetList * allWidgets ()
  • TQWidgetList * topLevelWidgets ()
  • @@ -122,8 +122,8 @@ flow and main settings.
  • TQWidget * activePopupWidget ()
  • TQWidget * activeModalWidget ()
  • TQClipboard * clipboard ()
  • -
  • TQWidget * widgetAt ( int x, int y, bool child = FALSE )
  • -
  • TQWidget * widgetAt ( const TQPoint & pos, bool child = FALSE )
  • +
  • TQWidget * widgetAt ( int x, int y, bool child = false )
  • +
  • TQWidget * widgetAt ( const TQPoint & pos, bool child = false )
  • TQEventLoop * eventLoop ()
  • void exit ( int retcode = 0 )
  • bool sendEvent ( TQObject * receiver, TQEvent * event )
  • @@ -161,7 +161,7 @@ flow and main settings.
  • bool reverseLayout ()
  • int horizontalAlignment ( int align )
  • bool isEffectEnabled ( TQt::UIEffect effect )
  • -
  • void setEffectEnabled ( TQt::UIEffect effect, bool enable = TRUE )
  • +
  • void setEffectEnabled ( TQt::UIEffect effect, bool enable = true )
  • Related Functions