From 897b24b91573c314ceb0736ca6a1fd94f3b9606b Mon Sep 17 00:00:00 2001 From: Anders Arnholm Date: Fri, 6 Feb 2009 14:08:47 +0100 Subject: [PATCH] Set right class on errors as well. --- linden/indra/llui/lltexteditor.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linden/indra/llui/lltexteditor.cpp b/linden/indra/llui/lltexteditor.cpp index b533f02..b308086 100644 --- a/linden/indra/llui/lltexteditor.cpp +++ b/linden/indra/llui/lltexteditor.cpp @@ -4342,7 +4342,7 @@ BOOL LLTextEditor::findHTML(const std::string &line, S32 *begin, S32 *end) const } } } catch ( std::out_of_range outOfRange ) { - LL_WARNS("") << "LLTextEditor::findHTML() got std::out_of_range exception \"" << line << "\"" << LL_ENDL; + LL_WARNS("TextEditor") << "got std::out_of_range exception \"" << line << "\"" << LL_ENDL; } } /* matches things like secondlife.com (no http://) needs a whitelist to really be effective. @@ -4412,7 +4412,7 @@ BOOL LLTextEditor::findHTML(const std::string &line, S32 *begin, S32 *end) const } } catch ( std::out_of_range outOfRange ) { - LL_WARNS("") << "LLTextEditor::findHTML() got std::out_of_range exception \"" << line << "\"" << LL_ENDL; + LL_WARNS("TextEditor") << "got std::out_of_range exception \"" << line << "\"" << LL_ENDL; } } -- 1.5.6.3