diff options
author | Jacek Antonelli | 2009-03-15 14:23:39 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-03-15 14:23:48 -0500 |
commit | 9f2aee65453981b37b7108ba3acdd86f0354defa (patch) | |
tree | ceec8a3c4b59f1ab2a3d132275e22363cab17202 /linden/indra/llui | |
parent | Second Life viewer sources 1.22.10-RC (diff) | |
download | meta-impy-9f2aee65453981b37b7108ba3acdd86f0354defa.zip meta-impy-9f2aee65453981b37b7108ba3acdd86f0354defa.tar.gz meta-impy-9f2aee65453981b37b7108ba3acdd86f0354defa.tar.bz2 meta-impy-9f2aee65453981b37b7108ba3acdd86f0354defa.tar.xz |
Second Life viewer sources 1.22.11
Diffstat (limited to 'linden/indra/llui')
-rw-r--r-- | linden/indra/llui/lltexteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llui/lltexteditor.cpp b/linden/indra/llui/lltexteditor.cpp index a40fec8..62064d9 100644 --- a/linden/indra/llui/lltexteditor.cpp +++ b/linden/indra/llui/lltexteditor.cpp | |||
@@ -1009,7 +1009,7 @@ void LLTextEditor::indentSelectedLines( S32 spaces ) | |||
1009 | } | 1009 | } |
1010 | else | 1010 | else |
1011 | { | 1011 | { |
1012 | while( (text[right] != '\n') && (right <= getLength() ) ) | 1012 | while( right < getLength() && (text[right] != '\n') ) |
1013 | { | 1013 | { |
1014 | right++; | 1014 | right++; |
1015 | } | 1015 | } |