summaryrefslogtreecommitdiff
path: root/indra/llui/llhandle.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2011-11-10 16:02:57 -0800
committerRichard Linden <none@none>2011-11-10 16:02:57 -0800
commit0c9d8d917a4281e2dea7fa2044e86735caca2aa9 (patch)
tree6b77b3c5292cc176ee6f460522cbede04920bf3d /indra/llui/llhandle.h
parent7e6e3d20f334547d8cea78e8e0b37106efebe028 (diff)
fixed build
fixed handle downcast not initiating handle
Diffstat (limited to 'indra/llui/llhandle.h')
-rw-r--r--indra/llui/llhandle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llhandle.h b/indra/llui/llhandle.h
index c8fff72110..e6390ee599 100644
--- a/indra/llui/llhandle.h
+++ b/indra/llui/llhandle.h
@@ -169,7 +169,7 @@ protected:
typename LLHandle<U> getDerivedHandle(typename boost::enable_if< typename boost::is_convertible<U*, T*> >::type* dummy = 0) const
{
LLHandle<U> downcast_handle;
- downcast_handle.mTombStone = mHandle.mTombStone;
+ downcast_handle.mTombStone = getHandle().mTombStone;
return downcast_handle;
}