diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llcommandlineparser.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 22 | ||||
| -rw-r--r-- | indra/newview/llvoavatar.h | 12 | ||||
| -rw-r--r-- | indra/newview/llvoavatarself.cpp | 10 | ||||
| -rw-r--r-- | indra/newview/llvoavatarself.h | 6 | 
5 files changed, 26 insertions, 26 deletions
| diff --git a/indra/newview/llcommandlineparser.cpp b/indra/newview/llcommandlineparser.cpp index 06d959ba3c..794bb78b9c 100644 --- a/indra/newview/llcommandlineparser.cpp +++ b/indra/newview/llcommandlineparser.cpp @@ -572,7 +572,7 @@ void setControlValueCB(const LLCommandLineParser::token_vector_t& value,                  // There's a token. check the string for true/false/1/0 etc.                  BOOL result = false; -                BOOL gotSet = LLStringUtil::convertToBOOL(token, result); +                bool gotSet = LLStringUtil::convertToBOOL(token, result);                  if (gotSet)                  {                      ctrl->setValue(LLSD(result), false); diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index c95648d62e..3332a2ef53 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -6904,17 +6904,17 @@ void LLVOAvatar::requestStopMotion( LLMotion* motion )  // loadSkeletonNode(): loads <skeleton> node from XML tree  //-----------------------------------------------------------------------------  //virtual -BOOL LLVOAvatar::loadSkeletonNode () +bool LLVOAvatar::loadSkeletonNode ()  {  	if (!LLAvatarAppearance::loadSkeletonNode())  	{ -		return FALSE; +		return false;  	}      bool ignore_hud_joints = false;      initAttachmentPoints(ignore_hud_joints); -	return TRUE; +	return true;  }  //----------------------------------------------------------------------------- @@ -7883,9 +7883,9 @@ S32 LLVOAvatar::getAttachmentCount()  	return count;  } -BOOL LLVOAvatar::isWearingWearableType(LLWearableType::EType type) const +bool LLVOAvatar::isWearingWearableType(LLWearableType::EType type) const  { -	if (mIsDummy) return TRUE; +	if (mIsDummy) return true;  	if (isSelf())  	{ @@ -7898,7 +7898,7 @@ BOOL LLVOAvatar::isWearingWearableType(LLWearableType::EType type) const  		case LLWearableType::WT_SKIN:  		case LLWearableType::WT_HAIR:  		case LLWearableType::WT_EYES: -			return TRUE;  // everyone has all bodyparts +			return true;  // everyone has all bodyparts  		default:  			break; // Do nothing  	} @@ -7919,10 +7919,10 @@ BOOL LLVOAvatar::isWearingWearableType(LLWearableType::EType type) const  				const EBakedTextureIndex baked_index = texture_dict->mBakedTextureIndex;  				return isTextureDefined(LLAvatarAppearance::getDictionary()->getBakedTexture(baked_index)->mTextureIndex);  			} -			return FALSE; +			return false;  		}  	} -	return FALSE; +	return false;  }  LLViewerObject *	LLVOAvatar::findAttachmentByID( const LLUUID & target_id ) const @@ -11462,17 +11462,17 @@ F32 calc_bouncy_animation(F32 x)  }  //virtual -BOOL LLVOAvatar::isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex te, U32 index ) const +bool LLVOAvatar::isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex te, U32 index ) const  {  	if (isIndexLocalTexture(te))   	{ -		return FALSE; +		return false;  	}  	if( !getImage( te, index ) )  	{  		LL_WARNS() << "getImage( " << te << ", " << index << " ) returned 0" << LL_ENDL; -		return FALSE; +		return false;  	}  	return (getImage(te, index)->getID() != IMG_DEFAULT_AVATAR &&  diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h index 759d02959c..81831c3829 100644 --- a/indra/newview/llvoavatar.h +++ b/indra/newview/llvoavatar.h @@ -461,7 +461,7 @@ public:      void				debugBodySize() const;  	void				postPelvisSetRecalc( void ); -	/*virtual*/ BOOL	loadSkeletonNode(); +	/*virtual*/ bool	loadSkeletonNode();      void                initAttachmentPoints(bool ignore_hud_joints = false);  	/*virtual*/ void	buildCharacter();      void                resetVisualParams(); @@ -701,7 +701,7 @@ public:  	// Loading status  	//--------------------------------------------------------------------  public: -	virtual BOOL    isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index = 0) const; +	virtual bool    isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index = 0) const;  	virtual BOOL	isTextureVisible(LLAvatarAppearanceDefines::ETextureIndex type, U32 index = 0) const;  	virtual BOOL	isTextureVisible(LLAvatarAppearanceDefines::ETextureIndex type, LLViewerWearable *wearable) const; @@ -875,11 +875,11 @@ public:  	// True if we are computing our appearance via local compositing  	// instead of baked textures, as for example during wearable  	// editing or when waiting for a subsequent server rebake. -	/*virtual*/ BOOL	isUsingLocalAppearance() const { return mUseLocalAppearance; } +	/*virtual*/ bool	isUsingLocalAppearance() const { return mUseLocalAppearance; }  	// True if we are currently in appearance editing mode. Often but  	// not always the same as isUsingLocalAppearance(). -	/*virtual*/ BOOL	isEditingAppearance() const { return mIsEditingAppearance; } +	/*virtual*/ bool	isEditingAppearance() const { return mIsEditingAppearance; }  	// FIXME review isUsingLocalAppearance uses, some should be isEditing instead. @@ -887,7 +887,7 @@ private:  	BOOL			mAppearanceAnimating;  	LLFrameTimer	mAppearanceMorphTimer;  	F32				mLastAppearanceBlendTime; -	BOOL			mIsEditingAppearance; // flag for if we're actively in appearance editing mode +	bool			mIsEditingAppearance; // flag for if we're actively in appearance editing mode  	BOOL			mUseLocalAppearance; // flag for if we're using a local composite  	//-------------------------------------------------------------------- @@ -919,7 +919,7 @@ public:  	void				cleanupAttachedMesh( LLViewerObject* pVO );      bool                hasPendingAttachedMeshes();  	static LLVOAvatar*  findAvatarFromAttachment(LLViewerObject* obj); -	/*virtual*/ BOOL	isWearingWearableType(LLWearableType::EType type ) const; +	/*virtual*/ bool	isWearingWearableType(LLWearableType::EType type ) const;  	LLViewerObject *	findAttachmentByID( const LLUUID & target_id ) const;  	LLViewerJointAttachment* getTargetAttachmentPoint(LLViewerObject* viewer_object); diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 7b24b9ee02..528407b82c 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -300,9 +300,9 @@ void LLVOAvatarSelf::markDead()  	LLVOAvatar::markDead();  } -/*virtual*/ BOOL LLVOAvatarSelf::loadAvatar() +/*virtual*/ bool LLVOAvatarSelf::loadAvatar()  { -	BOOL success = LLVOAvatar::loadAvatar(); +	bool success = LLVOAvatar::loadAvatar();  	// set all parameters stored directly in the avatar to have  	// the isSelfParam to be TRUE - this is used to prevent @@ -314,7 +314,7 @@ void LLVOAvatarSelf::markDead()  	{  		if (param->getWearableType() != LLWearableType::WT_INVALID)  		{ -			param->setIsDummy(TRUE); +			param->setIsDummy(true);  		}  	} @@ -691,7 +691,7 @@ bool LLVOAvatarSelf::updateCharacter(LLAgent &agent)  }  // virtual -BOOL LLVOAvatarSelf::isValid() const +bool LLVOAvatarSelf::isValid() const  {  	return ((getRegion() != NULL) && !isDead());  } @@ -1516,7 +1516,7 @@ BOOL LLVOAvatarSelf::isAllLocalTextureDataFinal() const  	return TRUE;  } -BOOL LLVOAvatarSelf::isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index) const +bool LLVOAvatarSelf::isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index) const  {  	LLUUID id;  	BOOL isDefined = TRUE; diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h index 6384e2b844..a121ef356e 100644 --- a/indra/newview/llvoavatarself.h +++ b/indra/newview/llvoavatarself.h @@ -59,7 +59,7 @@ public:  	virtual void 			initInstance(); // Called after construction to initialize the class.  	void					cleanup();  protected: -	/*virtual*/ BOOL		loadAvatar(); +	/*virtual*/ bool		loadAvatar();  	BOOL					loadAvatarSelf();  	BOOL					buildSkeletonSelf(const LLAvatarSkeletonInfo *info);  	BOOL					buildMenus(); @@ -110,7 +110,7 @@ private:  public:  	/*virtual*/ bool 	isSelf() const { return true; } -	/*virtual*/ BOOL	isValid() const; +	/*virtual*/ bool	isValid() const;  	//--------------------------------------------------------------------  	// Updates @@ -180,7 +180,7 @@ public:  	BOOL				isLocalTextureDataAvailable(const LLViewerTexLayerSet* layerset) const;  	BOOL				isLocalTextureDataFinal(const LLViewerTexLayerSet* layerset) const;  	// If you want to check all textures of a given type, pass gAgentWearables.getWearableCount() for index -	/*virtual*/ BOOL    isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index) const; +	/*virtual*/ bool    isTextureDefined(LLAvatarAppearanceDefines::ETextureIndex type, U32 index) const;  	/*virtual*/ BOOL	isTextureVisible(LLAvatarAppearanceDefines::ETextureIndex type, U32 index = 0) const;  	/*virtual*/ BOOL	isTextureVisible(LLAvatarAppearanceDefines::ETextureIndex type, LLViewerWearable *wearable) const; | 
