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 21:59:46 +0900 |
| commit | 90e340179f096e48a378636f02f7949e41b33d8e (patch) | |
| tree | 708f16490aa68dcfae89d6d128560ca72698ed2b /src/imageutils | |
| parent | a453c2f10b555d82aaafacc8815071835c13e719 (diff) | |
| download | gwenview-90e340179f096e48a378636f02f7949e41b33d8e.tar.gz gwenview-90e340179f096e48a378636f02f7949e41b33d8e.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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) */ |
