summaryrefslogtreecommitdiffstats
path: root/krdc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-03 15:55:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-08 17:03:36 +0900
commit89969dcb2142d91b295c8d18cde46e22ef118dce (patch)
tree862942119b09c5ad5aeaea8baa6b9e698928ce2e /krdc
parent40e3e626e4cc8bb2d65788e3c097ddae4192c4d8 (diff)
downloadtdenetwork-89969dcb2142d91b295c8d18cde46e22ef118dce.tar.gz
tdenetwork-89969dcb2142d91b295c8d18cde46e22ef118dce.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'krdc')
-rw-r--r--krdc/vnc/scaling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krdc/vnc/scaling.cpp b/krdc/vnc/scaling.cpp
index edfd0558..9787219c 100644
--- a/krdc/vnc/scaling.cpp
+++ b/krdc/vnc/scaling.cpp
@@ -104,7 +104,7 @@ void pnmscale_fractional(const TQImage& src, TQImage& dst, int x, int y, int w,
tempxelrow = new TQRgb[cols];
if ( src.hasAlphaBuffer() ) {
- dst.setAlphaBuffer(TRUE);
+ dst.setAlphaBuffer(true);
as = new long[cols];
for ( col = 0; col < cols; ++col )
as[col] = HALFSCALE;