diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqtabdialog.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqtabdialog.3qt')
-rw-r--r-- | doc/man/man3/tqtabdialog.3qt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/man/man3/tqtabdialog.3qt b/doc/man/man3/tqtabdialog.3qt index 498291a12..6a2ac5eda 100644 --- a/doc/man/man3/tqtabdialog.3qt +++ b/doc/man/man3/tqtabdialog.3qt @@ -16,7 +16,7 @@ Inherits TQDialog. .SS "Public Members" .in +1c .ti -1c -.BI "\fBTQTabDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )" +.BI "\fBTQTabDialog\fR ( TQWidget * parent = 0, const char * name = 0, bool modal = false, WFlags f = 0 )" .br .ti -1c .BI "\fB~TQTabDialog\fR ()" @@ -201,7 +201,7 @@ Most of the functionality in TQTabDialog is provided by a TQTabWidget. .PP See also TQDialog and Dialog Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "TQTabDialog::TQTabDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags f = 0 )" +.SH "TQTabDialog::TQTabDialog ( TQWidget * parent = 0, const char * name = 0, bool modal = false, WFlags f = 0 )" Constructs a TQTabDialog with only an OK button. The \fIparent\fR, \fIname\fR, \fImodal\fR and widget flag, \fIf\fR, arguments are passed on to the TQDialog constructor. .SH "TQTabDialog::~TQTabDialog ()" Destroys the tab dialog. @@ -262,23 +262,23 @@ The application's state should not be changed until the user clicks Apply or OK. .PP See also applyButtonPressed(), cancelButtonPressed(), and setDefaultButton(). .SH "bool TQTabDialog::hasApplyButton () const" -Returns TRUE if the tab dialog has an Apply button; otherwise returns FALSE. +Returns true if the tab dialog has an Apply button; otherwise returns false. .PP See also setApplyButton(), applyButtonPressed(), hasCancelButton(), and hasDefaultButton(). .SH "bool TQTabDialog::hasCancelButton () const" -Returns TRUE if the tab dialog has a Cancel button; otherwise returns FALSE. +Returns true if the tab dialog has a Cancel button; otherwise returns false. .PP See also setCancelButton(), cancelButtonPressed(), hasApplyButton(), and hasDefaultButton(). .SH "bool TQTabDialog::hasDefaultButton () const" -Returns TRUE if the tab dialog has a Defaults button; otherwise returns FALSE. +Returns true if the tab dialog has a Defaults button; otherwise returns false. .PP See also setDefaultButton(), defaultButtonPressed(), hasApplyButton(), and hasCancelButton(). .SH "bool TQTabDialog::hasHelpButton () const" -Returns TRUE if the tab dialog has a Help button; otherwise returns FALSE. +Returns true if the tab dialog has a Help button; otherwise returns false. .PP See also setHelpButton(), helpButtonPressed(), hasApplyButton(), and hasCancelButton(). .SH "bool TQTabDialog::hasOkButton () const" -Returns TRUE if the tab dialog has an OK button; otherwise returns FALSE. +Returns true if the tab dialog has an OK button; otherwise returns false. .PP See also setOkButton(), hasApplyButton(), hasCancelButton(), and hasDefaultButton(). .SH "void TQTabDialog::helpButtonPressed ()\fC [signal]\fR" @@ -308,15 +308,15 @@ This is a lower-level method for inserting tabs, similar to the other insertTab( .PP The \fIchild\fR is the widget to be placed on the new tab page. The \fItab\fR is the tab to display on the tab page -- normally this shows a label or an icon that identifies the tab page. The \fIindex\fR is the position where this tab page should be inserted. .SH "bool TQTabDialog::isTabEnabled ( TQWidget * w ) const" -Returns TRUE if the page \fIw\fR is enabled; otherwise returns FALSE. +Returns true if the page \fIw\fR is enabled; otherwise returns false. .PP See also setTabEnabled() and TQWidget::enabled. .SH "bool TQTabDialog::isTabEnabled ( const char * name ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP -Returns TRUE if the page with object name \fIname\fR is enabled and FALSE if it is disabled. +Returns true if the page with object name \fIname\fR is enabled and false if it is disabled. .PP -If \fIname\fR is 0 or not the name of any of the pages, isTabEnabled() returns FALSE. +If \fIname\fR is 0 or not the name of any of the pages, isTabEnabled() returns false. .PP See also setTabEnabled() and TQWidget::enabled. .SH "void TQTabDialog::removePage ( TQWidget * w )" @@ -406,7 +406,7 @@ Replaces the TQTabBar heading the dialog by the given tab bar, \fItb\fR. Note th .PP See also tabBar(). .SH "void TQTabDialog::setTabEnabled ( TQWidget * w, bool enable )" -If \fIenable\fR is TRUE the page \fIw\fR is enabled; otherwise \fIw\fR is disabled. The page's tab is redrawn appropriately. +If \fIenable\fR is true the page \fIw\fR is enabled; otherwise \fIw\fR is disabled. The page's tab is redrawn appropriately. .PP TQTabWidget uses TQWidget::setEnabled() internally, rather than keeping a separate flag. .PP |