diff options
author | Leslie Linden <leslie@lindenlab.com> | 2012-02-06 16:20:38 -0800 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2012-02-06 16:20:38 -0800 |
commit | ba32b72a9eea3ded3ee09675cc56670e618f652e (patch) | |
tree | 7721cdf5c37e0a326177db12cd38509f7303f0a0 | |
parent | e328dcf4062177c903d3099d0d16477824d23025 (diff) |
Mac build fix -- added missing enumeration from switch
-rw-r--r-- | indra/llui/lltextbase.cpp | 3 |
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) |