summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeslie Linden <leslie@lindenlab.com>2012-02-06 16:20:38 -0800
committerLeslie Linden <leslie@lindenlab.com>2012-02-06 16:20:38 -0800
commitba32b72a9eea3ded3ee09675cc56670e618f652e (patch)
tree7721cdf5c37e0a326177db12cd38509f7303f0a0
parente328dcf4062177c903d3099d0d16477824d23025 (diff)
Mac build fix -- added missing enumeration from switch
-rw-r--r--indra/llui/lltextbase.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp
index 5fe90e1ee3..e2d9a6cb81 100644
--- a/indra/llui/lltextbase.cpp
+++ b/indra/llui/lltextbase.cpp
@@ -2409,6 +2409,9 @@ void LLTextBase::updateRects()
case LLFontGL::BOTTOM:
delta_pos = mVisibleTextRect.mBottom - mTextBoundingRect.mBottom;
break;
+ case LLFontGL::BASELINE:
+ // do nothing
+ break;
}
// move line segments to fit new document rect
for (line_list_t::iterator it = mLineInfoList.begin(); it != mLineInfoList.end(); ++it)