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/tqspinbox.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/tqspinbox.html') diff --git a/doc/html/tqspinbox.html b/doc/html/tqspinbox.html index 8e17308be..30bba2778 100644 --- a/doc/html/tqspinbox.html +++ b/doc/html/tqspinbox.html @@ -261,8 +261,8 @@ This virtual function is used by the spin box whenever it needs to interpret text entered by the user as a value. The text is available as text() and as cleanText(), and this function must parse it if possible. If ok is not 0: if it parses the text -successfully, *ok is set to TRUE; otherwise *ok is set to -FALSE. +successfully, *ok is set to true; otherwise *ok is set to +false.

Subclasses that need to display spin box values in a non-numeric way need to reimplement this function.

Note that TQt handles specialValueText() separately; this function @@ -346,7 +346,7 @@ See the "specialValueText" pr

void TQSpinBox::stepDown () [virtual slot]

Decreases the spin box's value one lineStep(), wrapping as -necessary if wrapping() is TRUE. This is the same as clicking on +necessary if wrapping() is true. This is the same as clicking on the pointing-down button and can be used for keyboard accelerators, for example.

See also stepUp(), subtractLine(), lineStep, setSteps(), value, and value. @@ -354,7 +354,7 @@ accelerators, for example.

void TQSpinBox::stepUp () [virtual slot]

Increases the spin box's value by one lineStep(), wrapping as -necessary if wrapping() is TRUE. This is the same as clicking on +necessary if wrapping() is true. This is the same as clicking on the pointing-up button and can be used for keyboard accelerators, for example.

See also stepDown(), addLine(), lineStep, setSteps(), value, and value. @@ -425,7 +425,7 @@ the edit field of the spin box.

See also value, prefix, suffix, and specialValueText.

bool TQSpinBox::wrapping () const -

Returns TRUE if it is possible to step the value from the highest value to the lowest value and vice versa; otherwise returns FALSE. +

Returns true if it is possible to step the value from the highest value to the lowest value and vice versa; otherwise returns false. See the "wrapping" property for details.


Property Documentation

ButtonSymbols buttonSymbols

-- cgit v1.2.3