summaryrefslogtreecommitdiff
path: root/indra/llui/lltextbase.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-04-23 11:53:05 -0400
committerOz Linden <oz@lindenlab.com>2014-04-23 11:53:05 -0400
commit9353868d91dfe2c4539c81c0b96bfe9efb497b2c (patch)
treef6362bc51afe7fe463718c603ccf756a86079067 /indra/llui/lltextbase.cpp
parent5870788f68c6b1fb504ae95403e7da95bc55ed4c (diff)
parentb4ca93cadce90466d41704b68933c21fe909bcb8 (diff)
merge changes for STORM-1831
Diffstat (limited to 'indra/llui/lltextbase.cpp')
-rwxr-xr-xindra/llui/lltextbase.cpp3
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) )
{