diff options
author | Richard Linden <none@none> | 2011-11-08 13:47:08 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2011-11-08 13:47:08 -0800 |
commit | b6858df0dd9fa06ec8fa56c5ba63925a790b4811 (patch) | |
tree | 9298d771c580d1f98d107571a8eea83ff5875164 /indra/llui/llbutton.cpp | |
parent | d6d4bfa02a46c5c7f2e5376b9fad79f2624dda83 (diff) |
LLHandle<Derived> is now implicitly convertable to LLHandle<Base> and LLHandle<Base>
can be downcast to LLHandle<Derived> using the LLHandleProvider mixin
Diffstat (limited to 'indra/llui/llbutton.cpp')
-rw-r--r-- | indra/llui/llbutton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp index 74b8885e1f..a01dccc7ab 100644 --- a/indra/llui/llbutton.cpp +++ b/indra/llui/llbutton.cpp @@ -115,7 +115,7 @@ LLButton::Params::Params() LLButton::LLButton(const LLButton::Params& p) : LLUICtrl(p), - LLBadgeOwner(LLView::getHandle()), + LLBadgeOwner(getHandle()), mMouseDownFrame(0), mMouseHeldDownCount(0), mBorderEnabled( FALSE ), |