diff options
author | Oz Linden <oz@lindenlab.com> | 2014-04-23 11:53:05 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-04-23 11:53:05 -0400 |
commit | 9353868d91dfe2c4539c81c0b96bfe9efb497b2c (patch) | |
tree | f6362bc51afe7fe463718c603ccf756a86079067 /indra/llui/lltextbase.cpp | |
parent | 5870788f68c6b1fb504ae95403e7da95bc55ed4c (diff) | |
parent | b4ca93cadce90466d41704b68933c21fe909bcb8 (diff) |
merge changes for STORM-1831
Diffstat (limited to 'indra/llui/lltextbase.cpp')
-rwxr-xr-x | indra/llui/lltextbase.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 4144a42fd6..c4664d6fe0 100755 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -573,7 +573,8 @@ void LLTextBase::drawText() if ( (getSpellCheck()) && (getWText().length() > 2) ) { // Calculate start and end indices for the spell checking range - S32 start = line_start, end = getLineEnd(last_line); + S32 start = line_start; + S32 end = getLineEnd(last_line); if ( (mSpellCheckStart != start) || (mSpellCheckEnd != end) ) { |