diff options
| author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-02-23 18:10:08 +0200 | 
|---|---|---|
| committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-02-23 18:10:08 +0200 | 
| commit | 6b6d8cee77bc236036d5d3cc47d9aa562d034827 (patch) | |
| tree | 80c326edd6fa39643c2fc853ba88a2bfa259a9f9 | |
| parent | 3300c5b8002d8fbad4d6c0c3682b56c9ed79b2b6 (diff) | |
Fixed low priority bug EXT-5653 (View Profile: Hand-pointer is shown when hovering mouse above homepage that isn't a valid URL).
Removed an unnecessary on-click callback (that caused the cursor change) from the textbox.
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llpanelavatar.cpp | 16 | ||||
| -rw-r--r-- | indra/newview/llpanelavatar.h | 2 | 
2 files changed, 0 insertions, 18 deletions
diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index b61d3ef371..57b478ffef 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -47,7 +47,6 @@  #include "lltooldraganddrop.h"  #include "llscrollcontainer.h"  #include "llavatariconctrl.h" -#include "llweb.h"  #include "llfloaterreg.h"  #include "llnotificationsutil.h"  #include "llvoiceclient.h" @@ -486,7 +485,6 @@ LLPanelAvatarProfile::LLPanelAvatarProfile()  BOOL LLPanelAvatarProfile::postBuild()  { -	childSetActionTextbox("homepage_edit", boost::bind(&LLPanelAvatarProfile::onHomepageTextboxClicked, this));  	childSetCommitCallback("add_friend",(boost::bind(&LLPanelAvatarProfile::onAddFriendButtonClick,this)),NULL);  	childSetCommitCallback("im",(boost::bind(&LLPanelAvatarProfile::onIMButtonClick,this)),NULL);  	childSetCommitCallback("call",(boost::bind(&LLPanelAvatarProfile::onCallButtonClick,this)),NULL); @@ -732,20 +730,6 @@ void LLPanelAvatarProfile::csr()  	LLAvatarActions::csr(getAvatarId(), name);  } -void LLPanelAvatarProfile::onUrlTextboxClicked(const std::string& url) -{ -	LLWeb::loadURL(url); -} - -void LLPanelAvatarProfile::onHomepageTextboxClicked() -{ -	std::string url = childGetValue("homepage_edit").asString(); -	if(!url.empty()) -	{ -		onUrlTextboxClicked(url); -	} -} -  void LLPanelAvatarProfile::onAddFriendButtonClick()  {  	LLAvatarActions::requestFriendshipDialog(getAvatarId()); diff --git a/indra/newview/llpanelavatar.h b/indra/newview/llpanelavatar.h index babbe534b4..2bd23b6e9c 100644 --- a/indra/newview/llpanelavatar.h +++ b/indra/newview/llpanelavatar.h @@ -207,8 +207,6 @@ protected:  	bool enableGod(); -	void onUrlTextboxClicked(const std::string& url); -	void onHomepageTextboxClicked();  	void onAddFriendButtonClick();  	void onIMButtonClick();  	void onCallButtonClick();  | 
