From b87533f9904c10f24d6b2e8177c00944e3efe15b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 26 Nov 2025 15:11:22 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro --- doc/html/ntqspinbox.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/ntqspinbox.html') diff --git a/doc/html/ntqspinbox.html b/doc/html/ntqspinbox.html index 7ab4c8cde..564500dca 100644 --- a/doc/html/ntqspinbox.html +++ b/doc/html/ntqspinbox.html @@ -262,8 +262,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 @@ -347,7 +347,7 @@ See the "specialValueText" p

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. @@ -355,7 +355,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. @@ -426,7 +426,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