summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsqlfield.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqsqlfield.3qt')
-rw-r--r--doc/man/man3/tqsqlfield.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqsqlfield.3qt b/doc/man/man3/tqsqlfield.3qt
index f3e34a9d3..d49d8b048 100644
--- a/doc/man/man3/tqsqlfield.3qt
+++ b/doc/man/man3/tqsqlfield.3qt
@@ -53,7 +53,7 @@ TQSqlField \- Manipulates the fields in SQL database tables and views
.BI "bool \fBisReadOnly\fR () const"
.br
.ti -1c
-.BI "void \fBclear\fR ( bool nullify = TRUE )"
+.BI "void \fBclear\fR ( bool nullify = true )"
.br
.ti -1c
.BI "TQVariant::Type \fBtype\fR () const"
@@ -118,12 +118,12 @@ Constructs an empty field called \fIfieldName\fR of type \fItype\fR.
Constructs a copy of \fIother\fR.
.SH "TQSqlField::~TQSqlField ()\fC [virtual]\fR"
Destroys the object and frees any allocated resources.
-.SH "void TQSqlField::clear ( bool nullify = TRUE )"
-Clears the value of the field. If the field is read-only, nothing happens. If \fInullify\fR is TRUE (the default), the field is set to NULL.
+.SH "void TQSqlField::clear ( bool nullify = true )"
+Clears the value of the field. If the field is read-only, nothing happens. If \fInullify\fR is true (the default), the field is set to NULL.
.SH "bool TQSqlField::isNull () const"
-Returns TRUE if the field is currently NULL; otherwise returns FALSE.
+Returns true if the field is currently NULL; otherwise returns false.
.SH "bool TQSqlField::isReadOnly () const"
-Returns TRUE if the field's value is read only; otherwise returns FALSE.
+Returns true if the field's value is read only; otherwise returns false.
.SH "TQString TQSqlField::name () const"
Returns the name of the field.
.PP
@@ -131,7 +131,7 @@ Example: sql/overview/table4/main.cpp.
.SH "TQSqlField & TQSqlField::operator= ( const TQSqlField & other )"
Sets the field equal to \fIother\fR.
.SH "bool TQSqlField::operator== ( const TQSqlField & other ) const"
-Returns TRUE if the field is equal to \fIother\fR; otherwise returns FALSE. Fields are considered equal when the following field properties are the same:
+Returns true if the field is equal to \fIother\fR; otherwise returns false. Fields are considered equal when the following field properties are the same:
.TP
name()
.TP
@@ -151,7 +151,7 @@ Sets the read only flag of the field's value to \fIreadOnly\fR.
.PP
See also setValue().
.SH "void TQSqlField::setValue ( const TQVariant & value )\fC [virtual]\fR"
-Sets the value of the field to \fIvalue\fR. If the field is read-only (isReadOnly() returns TRUE), nothing happens. If the data type of \fIvalue\fR differs from the field's current data type, an attempt is made to cast it to the proper type. This preserves the data type of the field in the case of assignment, e.g. a TQString to an integer data type. For example:
+Sets the value of the field to \fIvalue\fR. If the field is read-only (isReadOnly() returns true), nothing happens. If the data type of \fIvalue\fR differs from the field's current data type, an attempt is made to cast it to the proper type. This preserves the data type of the field in the case of assignment, e.g. a TQString to an integer data type. For example:
.PP
.nf
.br