diff options
author | richard <none@none> | 2009-12-11 14:34:30 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-11 14:34:30 -0800 |
commit | c6234f352a318806fc5784d15440c5e632449719 (patch) | |
tree | 34c8afebe7861ff44d0d3bf5b344256781030a5a /indra/newview/lltoastpanel.cpp | |
parent | d5a58c20a8e266d71bf039a77911571480c63780 (diff) |
variable renames in LLTextBase
Diffstat (limited to 'indra/newview/lltoastpanel.cpp')
-rw-r--r-- | indra/newview/lltoastpanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltoastpanel.cpp b/indra/newview/lltoastpanel.cpp index afb9e261b0..755e647777 100644 --- a/indra/newview/lltoastpanel.cpp +++ b/indra/newview/lltoastpanel.cpp @@ -80,7 +80,7 @@ void LLToastPanel::snapToMessageHeight(LLTextBase* message, S32 maxLineCount) //Knowing the height is set to max allowed, getTextPixelHeight returns needed text height //Perhaps we need to pass maxLineCount as parameter to getTextPixelHeight to avoid previous reshape. - S32 requiredTextHeight = message->getContentsRect().getHeight(); + S32 requiredTextHeight = message->getTextBoundingRect().getHeight(); S32 newTextHeight = llmin(requiredTextHeight, maxTextHeight); //Calculate last delta height deducting previous heightDelta |