summaryrefslogtreecommitdiffstats
path: root/src/kernel/qfontdata_p.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-08 15:17:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-14 17:51:59 +0900
commit3a477fb70884668d163f6631a73c8ab894928bcc (patch)
tree0ac0327df978cf22b7a1f495f0649591bb39ed2a /src/kernel/qfontdata_p.h
parente4085a83c143eb366d0364596297b322476cc652 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 8r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7d612f7c91d55501276a385a30dbadb121e7bd9f)
Diffstat (limited to 'src/kernel/qfontdata_p.h')
-rw-r--r--src/kernel/qfontdata_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/qfontdata_p.h b/src/kernel/qfontdata_p.h
index 9c21dfe60..f780d46af 100644
--- a/src/kernel/qfontdata_p.h
+++ b/src/kernel/qfontdata_p.h
@@ -67,10 +67,10 @@ struct TQFontDef
inline TQFontDef()
: pointSize( -1 ), pixelSize( -1 ),
styleHint( TQFont::AnyStyle ), styleStrategy( TQFont::PreferDefault ),
- weight( 50 ), italic( FALSE ), fixedPitch( FALSE ), stretch( 100 ),
- ignorePitch(TRUE)
+ weight( 50 ), italic( false ), fixedPitch( false ), stretch( 100 ),
+ ignorePitch(true)
#ifdef TQ_WS_MAC
- ,fixedPitchComputed(FALSE)
+ ,fixedPitchComputed(false)
#endif
{
}
@@ -111,7 +111,7 @@ struct TQFontDef
if ( addStyle != other.addStyle ) return addStyle < other.addStyle;
#endif // TQ_WS_X11
- return FALSE;
+ return false;
}
};