diff options
| author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-03-05 18:50:38 +0200 | 
|---|---|---|
| committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-03-05 18:50:38 +0200 | 
| commit | 739dee86c9bd1d6853d4042aa88e6ffaeaf81229 (patch) | |
| tree | fcedd6937ed8afa1dd6fc04431759314262198e6 /indra/newview/llpanelpicks.cpp | |
| parent | 05807055de638259fc1da5b2e2cb694b80996f59 (diff) | |
WIP on  EXT-5687 (Classifieds are missing the clickthrough data).
Removed a stub clickthrough info dispatcher.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelpicks.cpp')
| -rw-r--r-- | indra/newview/llpanelpicks.cpp | 30 | 
1 files changed, 0 insertions, 30 deletions
| diff --git a/indra/newview/llpanelpicks.cpp b/indra/newview/llpanelpicks.cpp index 2ff2597f08..f6fcb5a304 100644 --- a/indra/newview/llpanelpicks.cpp +++ b/indra/newview/llpanelpicks.cpp @@ -174,31 +174,6 @@ LLClassifiedHandler gClassifiedHandler;  ////////////////////////////////////////////////////////////////////////// -/** - * Copy&Pasted from old LLPanelClassified. This class does nothing at the moment. - * Subscribing to "classifiedclickthrough" removes a few warnings. - */ -class LLClassifiedClickThrough : public LLDispatchHandler -{ -public: - -	// "classifiedclickthrough" -	// strings[0] = classified_id -	// strings[1] = teleport_clicks -	// strings[2] = map_clicks -	// strings[3] = profile_clicks -	virtual bool operator()( -		const LLDispatcher* dispatcher, -		const std::string& key, -		const LLUUID& invoice, -		const sparam_t& strings) -	{ -		if (strings.size() != 4)  -			return false; - -		return true; -	} -};  //-----------------------------------------------------------------------------  // LLPanelPicks @@ -217,12 +192,9 @@ LLPanelPicks::LLPanelPicks()  	mClassifiedsAccTab(NULL),  	mPanelClassifiedInfo(NULL),  	mPanelClassifiedEdit(NULL), -	mClickThroughDisp(NULL),  	mNoClassifieds(false),  	mNoPicks(false)  { -	mClickThroughDisp = new LLClassifiedClickThrough(); -	gGenericDispatcher.addHandler("classifiedclickthrough", mClickThroughDisp);  }  LLPanelPicks::~LLPanelPicks() @@ -231,8 +203,6 @@ LLPanelPicks::~LLPanelPicks()  	{  		LLAvatarPropertiesProcessor::getInstance()->removeObserver(getAvatarId(),this);  	} - -	delete mClickThroughDisp;  }  void* LLPanelPicks::create(void* data /* = NULL */) | 
