From 81e6c0f6ef3d7efce3bf9865b135d2b5a3ce0380 Mon Sep 17 00:00:00 2001 From: James Cook Date: Tue, 24 Nov 2009 11:52:12 -0800 Subject: Fixed double-semicolon. Last commit reviewed with Leyla. --- indra/llui/lllineeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- cgit v1.2.3