summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llbutton.cpp12
-rw-r--r--indra/llui/llbutton.h1
2 files changed, 0 insertions, 13 deletions
diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp
index 387d2c0d07..1bce31edb1 100644
--- a/indra/llui/llbutton.cpp
+++ b/indra/llui/llbutton.cpp
@@ -427,18 +427,6 @@ void LLButton::onVisibilityChange(bool new_visibility)
return LLUICtrl::onVisibilityChange(new_visibility);
}
-void LLButton::reshape(S32 width, S32 height, bool called_from_parent)
-{
- S32 delta_width = width - getRect().getWidth();
- S32 delta_height = height - getRect().getHeight();
-
- if (delta_width || delta_height || sForceReshape)
- {
- LLUICtrl::reshape(width, height, called_from_parent);
- mFontBuffer.reset();
- }
-}
-
void LLButton::dirtyRect()
{
LLUICtrl::dirtyRect();
diff --git a/indra/llui/llbutton.h b/indra/llui/llbutton.h
index 6a389f0554..890e7c2d1e 100644
--- a/indra/llui/llbutton.h
+++ b/indra/llui/llbutton.h
@@ -169,7 +169,6 @@ public:
/*virtual*/ bool postBuild() override;
void onVisibilityChange(bool visible) override;
- void reshape(S32 width, S32 height, bool called_from_parent = true) override;
void dirtyRect() override;
virtual void onMouseLeave(S32 x, S32 y, MASK mask) override;