diff options
| author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-02-02 17:08:29 +0200 |
|---|---|---|
| committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-02-02 17:08:29 +0200 |
| commit | 10ed52f69ab55924519d52fe8ccd48a5b3d7c4ba (patch) | |
| tree | 2c1ed060fe1645793917431573da2d3261968b5d | |
| parent | 20cef655398fa82b99a1b95fec204d209a5672ca (diff) | |
Fixed linux build.
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llnearbychat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llnearbychat.cpp b/indra/newview/llnearbychat.cpp index 49ab61556f..6de47fccd2 100644 --- a/indra/newview/llnearbychat.cpp +++ b/indra/newview/llnearbychat.cpp @@ -300,8 +300,8 @@ void LLNearbyChat::loadHistory() LLChat chat; chat.mFromName = from; chat.mFromID = from_id; - chat.mText = msg[IM_TEXT]; - chat.mTimeStr = msg[IM_TIME]; + chat.mText = msg[IM_TEXT].asString(); + chat.mTimeStr = msg[IM_TIME].asString(); addMessage(chat); it++; |
