diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-10-15 13:58:21 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-10-15 13:58:21 -0700 |
commit | 5a5df259ffc23a6289d25deac906047a7356fb42 (patch) | |
tree | 37534a7be9108e0865d17f85cb677120f26b771b /indra/llkdu | |
parent | d7d0416547958792517a9b739b370e51c717fb23 (diff) |
CHUI-380: Final commit for this issue. After code review changed some method names to be more accurate. Also using dynamic_cast instead of static_cast for safety.
Diffstat (limited to 'indra/llkdu')
-rw-r--r-- | indra/llkdu/llimagej2ckdu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llkdu/llimagej2ckdu.cpp b/indra/llkdu/llimagej2ckdu.cpp index db75b6e003..cf88de12b4 100644 --- a/indra/llkdu/llimagej2ckdu.cpp +++ b/indra/llkdu/llimagej2ckdu.cpp @@ -166,12 +166,12 @@ void LLKDUMessageWarning::put_text(const kdu_uint16 *s) void LLKDUMessageError::put_text(const char *s) { - //llinfos << "KDU Error: " << s << llendl; + llinfos << "KDU Error: " << s << llendl; } void LLKDUMessageError::put_text(const kdu_uint16 *s) { - //llinfos << "KDU Error: " << s << llendl; + llinfos << "KDU Error: " << s << llendl; } void LLKDUMessageError::flush(bool end_of_message) |