diff options
author | James Cook <james@lindenlab.com> | 2009-11-24 11:52:12 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-11-24 11:52:12 -0800 |
commit | 81e6c0f6ef3d7efce3bf9865b135d2b5a3ce0380 (patch) | |
tree | fe9c614439aefd2826850bd1d737cc58af469b65 /indra/llui/lllineeditor.cpp | |
parent | 58ee415c4972c37256cbd23e2c96cc5f644944d1 (diff) |
Fixed double-semicolon. Last commit reviewed with Leyla.
Diffstat (limited to 'indra/llui/lllineeditor.cpp')
-rw-r--r-- | indra/llui/lllineeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index af1f8752c9..4ea30dbd4d 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -338,7 +338,7 @@ void LLLineEditor::setTextPadding(S32 left, S32 right) void LLLineEditor::updateTextPadding() { - mTextLeftEdge = llclamp(mTextPadLeft, 0, getRect().getWidth());; + mTextLeftEdge = llclamp(mTextPadLeft, 0, getRect().getWidth()); mTextRightEdge = getRect().getWidth() - llclamp(mTextPadRight, 0, getRect().getWidth()); } |