diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-03-11 18:20:24 +0200 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-03-11 18:20:24 +0200 |
commit | 845405cce6e432c60f1733e7b8d529682a107a86 (patch) | |
tree | 31ccc28d5a3bfd1547b6628a9db45905dc229d7c /indra/newview/llchathistory.h | |
parent | 1426765e82549ec9d17a0f90d902f25c0e785bbd (diff) |
STORM-1021 FIXED Viewer shows "L$300" instead of object IM details if object sends an IM from another region.
The problem was caused by trying to lookup info for a *remote* object by its id in the gObjectList --
this is what the usual object inspector (LLInspectObject) does.
The fix saves the sender object info when a message arrives, then passes the info to the remote object inspector (LLInspectRemoteObject).
Diffstat (limited to 'indra/newview/llchathistory.h')
-rw-r--r-- | indra/newview/llchathistory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.h b/indra/newview/llchathistory.h index ac48d7bf29..28344e6a10 100644 --- a/indra/newview/llchathistory.h +++ b/indra/newview/llchathistory.h @@ -94,7 +94,7 @@ class LLChatHistory : public LLUICtrl * Builds a message header. * @return pointer to LLView header object. */ - LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params); + LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params, const LLSD& args); void onClickMoreText(); |