diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-03 15:55:36 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-08 17:03:36 +0900 |
| commit | 89969dcb2142d91b295c8d18cde46e22ef118dce (patch) | |
| tree | 862942119b09c5ad5aeaea8baa6b9e698928ce2e /krdc | |
| parent | 40e3e626e4cc8bb2d65788e3c097ddae4192c4d8 (diff) | |
| download | tdenetwork-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.cpp | 2 |
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; |
