aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorJacek Antonelli2009-03-15 14:23:39 -0500
committerJacek Antonelli2009-03-15 14:23:48 -0500
commit9f2aee65453981b37b7108ba3acdd86f0354defa (patch)
treeceec8a3c4b59f1ab2a3d132275e22363cab17202 /linden/indra
parentSecond Life viewer sources 1.22.10-RC (diff)
downloadmeta-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')
-rw-r--r--linden/indra/llcommon/llversionviewer.h2
-rw-r--r--linden/indra/llui/lltexteditor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h
index 258a5e2..33e5fdc 100644
--- a/linden/indra/llcommon/llversionviewer.h
+++ b/linden/indra/llcommon/llversionviewer.h
@@ -34,7 +34,7 @@
34 34
35const S32 LL_VERSION_MAJOR = 1; 35const S32 LL_VERSION_MAJOR = 1;
36const S32 LL_VERSION_MINOR = 22; 36const S32 LL_VERSION_MINOR = 22;
37const S32 LL_VERSION_PATCH = 10; 37const S32 LL_VERSION_PATCH = 11;
38const S32 LL_VERSION_BUILD = 0; 38const S32 LL_VERSION_BUILD = 0;
39 39
40const char * const LL_CHANNEL = "Second Life Release"; 40const char * const LL_CHANNEL = "Second Life Release";
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 }