diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-19 13:04:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-20 22:38:26 +0900 |
| commit | f7cfd2e7d41e6d8c4eee02ba589cd0a449154398 (patch) | |
| tree | 44e06522f744b25d2c93f8a1a0d42d02484af762 /src/imageutils | |
| parent | f7d83fbf8c722615d0e791a692ee20126a7bacf1 (diff) | |
| download | gwenview-r14.1.4.tar.gz gwenview-r14.1.4.zip | |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 90e340179f096e48a378636f02f7949e41b33d8e)
Diffstat (limited to 'src/imageutils')
| -rw-r--r-- | src/imageutils/jpegint.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/imageutils/jpegint.h b/src/imageutils/jpegint.h index 21a0146..e32a833 100644 --- a/src/imageutils/jpegint.h +++ b/src/imageutils/jpegint.h @@ -51,8 +51,8 @@ struct jpeg_comp_master { JMETHOD(void, finish_pass, (j_compress_ptr cinfo)); /* State variables made visible to other modules */ - boolean call_pass_startup; /* True if pass_startup must be called */ - boolean is_last_pass; /* True during last pass */ + boolean call_pass_startup; /* TRUE if pass_startup must be called */ + boolean is_last_pass; /* TRUE during last pass */ }; /* Main buffer control (downsampled-data buffer) */ @@ -144,7 +144,7 @@ struct jpeg_decomp_master { JMETHOD(void, finish_output_pass, (j_decompress_ptr cinfo)); /* State variables made visible to other modules */ - boolean is_dummy_pass; /* True during 1st pass for 2-pass quant */ + boolean is_dummy_pass; /* TRUE during 1st pass for 2-pass quant */ }; /* Input control module */ @@ -155,8 +155,8 @@ struct jpeg_input_controller { JMETHOD(void, finish_input_pass, (j_decompress_ptr cinfo)); /* State variables made visible to other modules */ - boolean has_multiple_scans; /* True if file has multiple scans */ - boolean eoi_reached; /* True when EOI has been consumed */ + boolean has_multiple_scans; /* TRUE if file has multiple scans */ + boolean eoi_reached; /* TRUE when EOI has been consumed */ }; /* Main buffer control (downsampled-data buffer) */ @@ -460,8 +460,8 @@ struct jpeg_comp_master { JMETHOD(void, finish_pass, (j_compress_ptr cinfo)); /* State variables made visible to other modules */ - boolean call_pass_startup; /* True if pass_startup must be called */ - boolean is_last_pass; /* True during last pass */ + boolean call_pass_startup; /* TRUE if pass_startup must be called */ + boolean is_last_pass; /* TRUE during last pass */ }; /* Main buffer control (downsampled-data buffer) */ @@ -551,7 +551,7 @@ struct jpeg_decomp_master { JMETHOD(void, finish_output_pass, (j_decompress_ptr cinfo)); /* State variables made visible to other modules */ - boolean is_dummy_pass; /* True during 1st pass for 2-pass quant */ + boolean is_dummy_pass; /* TRUE during 1st pass for 2-pass quant */ }; /* Input control module */ @@ -562,8 +562,8 @@ struct jpeg_input_controller { JMETHOD(void, finish_input_pass, (j_decompress_ptr cinfo)); /* State variables made visible to other modules */ - boolean has_multiple_scans; /* True if file has multiple scans */ - boolean eoi_reached; /* True when EOI has been consumed */ + boolean has_multiple_scans; /* TRUE if file has multiple scans */ + boolean eoi_reached; /* TRUE when EOI has been consumed */ }; /* Main buffer control (downsampled-data buffer) */ |
