diff options
| author | Aimee Linden <aimee@lindenlab.com> | 2010-07-20 15:20:05 +0100 | 
|---|---|---|
| committer | Aimee Linden <aimee@lindenlab.com> | 2010-07-20 15:20:05 +0100 | 
| commit | 5ed10612172cc1f9d50784e6087631ddf700ccad (patch) | |
| tree | 516cb54a1c26ba2fe164279e7796241ae40941f6 /indra | |
| parent | ef7f5889233d96d3bf59ad10a1b3208e6db791e7 (diff) | |
Trivial: Correct speeling "LLAvatarList::onItemDoucleClicked"
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llavatarlist.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llavatarlist.h | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/llavatarlist.cpp b/indra/newview/llavatarlist.cpp index 99156b9d9d..57e186b6a8 100644 --- a/indra/newview/llavatarlist.cpp +++ b/indra/newview/llavatarlist.cpp @@ -384,7 +384,7 @@ void LLAvatarList::addNewItem(const LLUUID& id, const std::string& name, BOOL is  	item->setShowProfileBtn(mShowProfileBtn);  	item->showSpeakingIndicator(mShowSpeakingIndicator); -	item->setDoubleClickCallback(boost::bind(&LLAvatarList::onItemDoucleClicked, this, _1, _2, _3, _4)); +	item->setDoubleClickCallback(boost::bind(&LLAvatarList::onItemDoubleClicked, this, _1, _2, _3, _4));  	addItem(item, id, pos);  } @@ -447,7 +447,7 @@ void LLAvatarList::updateLastInteractionTimes()  	}  } -void LLAvatarList::onItemDoucleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask) +void LLAvatarList::onItemDoubleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask)  {  	mItemDoubleClickSignal(ctrl, x, y, mask);  } diff --git a/indra/newview/llavatarlist.h b/indra/newview/llavatarlist.h index fffc6e6e73..5b010c9cfe 100644 --- a/indra/newview/llavatarlist.h +++ b/indra/newview/llavatarlist.h @@ -110,7 +110,7 @@ protected:  		uuid_vec_t& vadded,  		uuid_vec_t& vremoved);  	void updateLastInteractionTimes(); -	void onItemDoucleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask); +	void onItemDoubleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask);  private: | 
