Skip to content
Snippets Groups Projects
Commit 4797f54b authored by Richard Nelson's avatar Richard Nelson
Browse files

EXT-8305 FIX [crashhunters] Crash in LLTabContainer::findChildView

parent a2b9af62
Branches
Tags
No related merge requests found
...@@ -197,14 +197,15 @@ BOOL LLPanelMainInventory::postBuild() ...@@ -197,14 +197,15 @@ BOOL LLPanelMainInventory::postBuild()
mFilterEditor->setCommitCallback(boost::bind(&LLPanelMainInventory::onFilterEdit, this, _2)); mFilterEditor->setCommitCallback(boost::bind(&LLPanelMainInventory::onFilterEdit, this, _2));
} }
initListCommandsHandlers();
// *TODO:Get the cost info from the server // *TODO:Get the cost info from the server
const std::string upload_cost("10"); const std::string upload_cost("10");
childSetLabelArg("Upload Image", "[COST]", upload_cost); mMenuAdd->getChild<LLMenuItemGL>("Upload Image")->setLabelArg("[COST]", upload_cost);
childSetLabelArg("Upload Sound", "[COST]", upload_cost); mMenuAdd->getChild<LLMenuItemGL>("Upload Sound")->setLabelArg("[COST]", upload_cost);
childSetLabelArg("Upload Animation", "[COST]", upload_cost); mMenuAdd->getChild<LLMenuItemGL>("Upload Animation")->setLabelArg("[COST]", upload_cost);
childSetLabelArg("Bulk Upload", "[COST]", upload_cost); mMenuAdd->getChild<LLMenuItemGL>("Bulk Upload")->setLabelArg("[COST]", upload_cost);
initListCommandsHandlers();
return TRUE; return TRUE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment