diff options
author | Jonathan Yap <none@none> | 2012-02-05 15:48:07 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2012-02-05 15:48:07 -0500 |
commit | 39ffad760b7abd09c8a7af6871fcabbf2da9c1e6 (patch) | |
tree | 917cc278b0c1615dae3f917a4911e795507d36f7 /indra/newview/llautocorrect.cpp | |
parent | 6443701a3fc41eff2c48f6e57a79010cdb8339e2 (diff) |
STORM-1738 Fix some syntax errors
warn-on-failure:open-license
Diffstat (limited to 'indra/newview/llautocorrect.cpp')
-rw-r--r-- | indra/newview/llautocorrect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llautocorrect.cpp b/indra/newview/llautocorrect.cpp index c16787d637..9162b35f45 100644 --- a/indra/newview/llautocorrect.cpp +++ b/indra/newview/llautocorrect.cpp @@ -375,7 +375,7 @@ std::string AutoCorrect::replaceWords(std::string words) args["REPLACEMENT"]=replacement; LLNotificationsUtil::add("AutoReplace",args); } - ldebugs << "found a word in list " << location.c_str() << " and it will replace " << currentWord.c_str() << " => " << replacement.c_str() << llendl; + lldebugs << "found a word in list " << location.c_str() << " and it will replace " << currentWord.c_str() << " => " << replacement.c_str() << llendl; int wordStart = words.find(currentWord); words.replace(wordStart,currentWord.length(),replacement); return replaceWords(words);//lol recursion! |