Skip to content
Snippets Groups Projects
Commit 67fb5884 authored by Aimee Linden's avatar Aimee Linden
Browse files

Trivial: Correct speeling "LLAvatarList::onItemDoucleClicked"

parent 71c54a90
No related branches found
No related tags found
No related merge requests found
...@@ -384,7 +384,7 @@ void LLAvatarList::addNewItem(const LLUUID& id, const std::string& name, BOOL is ...@@ -384,7 +384,7 @@ void LLAvatarList::addNewItem(const LLUUID& id, const std::string& name, BOOL is
item->setShowProfileBtn(mShowProfileBtn); item->setShowProfileBtn(mShowProfileBtn);
item->showSpeakingIndicator(mShowSpeakingIndicator); 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); addItem(item, id, pos);
} }
...@@ -447,7 +447,7 @@ void LLAvatarList::updateLastInteractionTimes() ...@@ -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); mItemDoubleClickSignal(ctrl, x, y, mask);
} }
......
...@@ -110,7 +110,7 @@ class LLAvatarList : public LLFlatListViewEx ...@@ -110,7 +110,7 @@ class LLAvatarList : public LLFlatListViewEx
uuid_vec_t& vadded, uuid_vec_t& vadded,
uuid_vec_t& vremoved); uuid_vec_t& vremoved);
void updateLastInteractionTimes(); void updateLastInteractionTimes();
void onItemDoucleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask); void onItemDoubleClicked(LLUICtrl* ctrl, S32 x, S32 y, MASK mask);
private: private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment