diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llmessage/llcachename.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llvoavatar.h | 5 | 
2 files changed, 5 insertions, 2 deletions
| diff --git a/indra/llmessage/llcachename.cpp b/indra/llmessage/llcachename.cpp index deaa3e138e..a8f53a38c3 100644 --- a/indra/llmessage/llcachename.cpp +++ b/indra/llmessage/llcachename.cpp @@ -575,7 +575,7 @@ std::string LLCacheName::buildLegacyName(const std::string& complete_name)  	LLStringUtil::toUpper(cap_letter);  	legacy_name = cap_letter + legacy_name.substr(1);
 -	if (name_results[4].matched)
 +	if (name_results[3].matched)
  	{
  		std::string last_name = name_results[3];  		std::string cap_letter = last_name.substr(1, 1); diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index f4f1235d55..a779a1735c 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -33,6 +33,8 @@  #include <string>  #include <vector> +#include <boost/signals2.hpp> +  #include "imageids.h"			// IMG_INVISIBLE  #include "llchat.h"  #include "lldrawpoolalpha.h" @@ -71,7 +73,8 @@ class LLVOAvatarSkeletonInfo;  //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  class LLVOAvatar :  	public LLViewerObject, -	public LLCharacter +	public LLCharacter, +	public boost::signals2::trackable  {  public:  	friend class LLVOAvatarSelf; | 
