diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2010-01-25 18:43:31 +0200 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2010-01-25 18:43:31 +0200 | 
| commit | 254b7d72d17c279aa906ee235f08ff1fa9e2b9cf (patch) | |
| tree | 9fc5df0cc71354401865f4e1b156fddd186bf828 /indra/newview | |
| parent | e3e4a301ab00d62d7ecf5d5ce2f4d217bc6c79e0 (diff) | |
fixed EXT-4601 [BSI] New IM sessions use obsolete timestamps for first message
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llchathistory.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/llchathistory.h | 2 | 
2 files changed, 5 insertions, 2 deletions
| diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index a46cd84b60..d6a7edee5b 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -550,8 +550,8 @@ void LLChatHistory::appendMessage(const LLChat& chat, const bool use_plain_text_  		if (mLastFromName == chat.mFromName   			&& mLastFromID == chat.mFromID  			&& mLastMessageTime.notNull()  -			&& (new_message_time.secondsSinceEpoch() - mLastMessageTime.secondsSinceEpoch()) < 60.0  -			) +			&& (new_message_time.secondsSinceEpoch() - mLastMessageTime.secondsSinceEpoch()) < 60.0 +			&& mLastMessageTimeStr.size() == chat.mTimeStr.size())  //*HACK to distinguish between current and previous chat session's histories  		{  			view = getSeparator();  			p.top_pad = mTopSeparatorPad; @@ -585,6 +585,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const bool use_plain_text_  		mLastFromName = chat.mFromName;  		mLastFromID = chat.mFromID;  		mLastMessageTime = new_message_time; +		mLastMessageTimeStr = chat.mTimeStr;  	}  	std::string message = irc_me ? chat.mText.substr(3) : chat.mText; diff --git a/indra/newview/llchathistory.h b/indra/newview/llchathistory.h index f2d403f639..c2c60e60cf 100644 --- a/indra/newview/llchathistory.h +++ b/indra/newview/llchathistory.h @@ -125,6 +125,8 @@ class LLChatHistory : public LLUICtrl  		std::string mLastFromName;  		LLUUID mLastFromID;  		LLDate mLastMessageTime; +		std::string mLastMessageTimeStr; +  		std::string mMessageHeaderFilename;  		std::string mMessageSeparatorFilename; | 
