diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-07-22 11:35:23 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-07-22 11:35:23 -0400 |
commit | acdb050ce5e672a6e5c83ef6e95257ce68934d1b (patch) | |
tree | 813b9eed2014e311fd4d0a0c0a219feff73151d5 /indra/llimage/llimagepng.h | |
parent | ab07b1a46150aaf04e7fd80c141bc9c95656b065 (diff) |
MAINT-6584: Convert LLImage class hierarchy to standard 'bool'
instead of legacy BOOL.
Diffstat (limited to 'indra/llimage/llimagepng.h')
-rw-r--r-- | indra/llimage/llimagepng.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llimage/llimagepng.h b/indra/llimage/llimagepng.h index 1fbd850a2e..ef16f2996f 100644 --- a/indra/llimage/llimagepng.h +++ b/indra/llimage/llimagepng.h @@ -38,9 +38,9 @@ public: LLImagePNG(); /*virtual*/ std::string getExtension() { return std::string("png"); } - /*virtual*/ BOOL updateData(); - /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 decode_time); - /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 encode_time); + /*virtual*/ bool updateData(); + /*virtual*/ bool decode(LLImageRaw* raw_image, F32 decode_time); + /*virtual*/ bool encode(const LLImageRaw* raw_image, F32 encode_time); }; #endif |