Fix unused variable breaking Mac builds
parent
7766a98d11
commit
bbdcc2ca31
|
|
@ -635,7 +635,7 @@ void RlvGiveToRLVTaskOffer::doneIdle()
|
|||
|
||||
void RlvGiveToRLVTaskOffer::onDestinationCreated(const LLUUID& idDestFolder, const std::string& strName)
|
||||
{
|
||||
if (const LLViewerInventoryCategory* pTarget = (idDestFolder.notNull()) ? gInventory.getCategory(idDestFolder) : nullptr)
|
||||
if (idDestFolder.notNull() ? gInventory.getCategory(idDestFolder) : nullptr)
|
||||
{
|
||||
moveAndRename(m_Folders.front(), idDestFolder, strName, new LLBoostFuncInventoryCallback(boost::bind(&RlvGiveToRLVTaskOffer::onOfferCompleted, this, _1)));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue