diff options
| -rw-r--r-- | indra/newview/llpanelobjectinventory.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index 26f32d656f..869b8beaec 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -725,6 +725,7 @@ public:  							EDragAndDropType cargo_type,  							void* cargo_data);  	virtual BOOL canOpenItem() const { return TRUE; } +	virtual void openItem();  };  LLTaskCategoryBridge::LLTaskCategoryBridge( @@ -759,7 +760,8 @@ void LLTaskCategoryBridge::buildContextMenu(LLMenuGL& menu, U32 flags)  {  	std::vector<std::string> items;  	std::vector<std::string> disabled_items; -	items.push_back(std::string("Task Open")); +	items.push_back(std::string("--no options--")); +	disabled_items.push_back(std::string("--no options--"));  	hide_context_entries(menu, items, disabled_items);  } @@ -770,6 +772,10 @@ BOOL LLTaskCategoryBridge::hasChildren() const  	return FALSE;  } +void LLTaskCategoryBridge::openItem() +{ +} +  BOOL LLTaskCategoryBridge::startDrag(EDragAndDropType* type, LLUUID* id) const  {  	//llinfos << "LLTaskInvFVBridge::startDrag()" << llendl;  | 
