diff options
| -rw-r--r-- | indra/newview/llappearancemgr.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llenvironment.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llfloatercreatelandmark.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llfloateroutfitphotopreview.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llfloaterscriptlimits.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llimview.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llinventoryfilter.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llinventoryfunctions.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llinventorymodel.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/lloutfitgallery.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/lloutfitslist.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llpanellandmedia.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llpanelplaces.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llpanelprofile.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llspeakers.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llviewermenu.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llviewertexteditor.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llviewerwindow.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llvovolume.cpp | 6 | 
19 files changed, 6 insertions, 29 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 909f32cd21..3c93a9df7e 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -3987,7 +3987,7 @@ void LLAppearanceMgr::makeNewOutfitLinks(const std::string& new_folder_name, boo  		// existence of AIS as an indicator the fix is present. Does  		// not actually use AIS to create the category.  		inventory_func_type func = boost::bind(&LLAppearanceMgr::onOutfitFolderCreated,this,_1,show_panel); -		LLUUID folder_id = gInventory.createNewCategory( +		gInventory.createNewCategory(  			parent_id,  			LLFolderType::FT_OUTFIT,  			new_folder_name, diff --git a/indra/newview/llenvironment.cpp b/indra/newview/llenvironment.cpp index 1300cf3658..9a23702c38 100644 --- a/indra/newview/llenvironment.cpp +++ b/indra/newview/llenvironment.cpp @@ -684,7 +684,6 @@ namespace              if (!injection->mBlendIn)                  mix = 1.0 - mix;              stringset_t dummy; -            LLUUID cloud_noise_id = getCloudNoiseTextureId();              F64 value = this->mSettings[injection->mKeyName].asReal();              if (this->getCloudNoiseTextureId().isNull())              { diff --git a/indra/newview/llfloatercreatelandmark.cpp b/indra/newview/llfloatercreatelandmark.cpp index 7def855d83..b82d8a29ba 100644 --- a/indra/newview/llfloatercreatelandmark.cpp +++ b/indra/newview/llfloatercreatelandmark.cpp @@ -316,7 +316,6 @@ void LLFloaterCreateLandmark::onSaveClicked()  	LLStringUtil::trim(current_title_value);  	LLStringUtil::trim(current_notes_value); -	LLUUID item_id = mItem->getUUID();  	LLUUID folder_id = mFolderCombo->getValue().asUUID();  	bool change_parent = folder_id != mItem->getParentUUID(); diff --git a/indra/newview/llfloateroutfitphotopreview.cpp b/indra/newview/llfloateroutfitphotopreview.cpp index 6c39db730c..ade258aef7 100644 --- a/indra/newview/llfloateroutfitphotopreview.cpp +++ b/indra/newview/llfloateroutfitphotopreview.cpp @@ -234,7 +234,6 @@ void LLFloaterOutfitPhotoPreview::updateImageID()  	if(item)  	{  		mImageID = item->getAssetUUID(); -		LLPermissions perm(item->getPermissions());  	}  	else  	{ diff --git a/indra/newview/llfloaterscriptlimits.cpp b/indra/newview/llfloaterscriptlimits.cpp index 3746b9b6c2..40fe11b309 100644 --- a/indra/newview/llfloaterscriptlimits.cpp +++ b/indra/newview/llfloaterscriptlimits.cpp @@ -421,7 +421,6 @@ void LLPanelScriptLimitsRegionMemory::setRegionDetails(LLSD content)  	for(S32 i = 0; i < number_parcels; i++)  	{  		std::string parcel_name = content["parcels"][i]["name"].asString(); -		LLUUID parcel_id = content["parcels"][i]["id"].asUUID();  		S32 number_objects = content["parcels"][i]["objects"].size();  		S32 local_id = 0; diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 4d6ebf9cbb..afd68a6a38 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2114,8 +2114,6 @@ void LLOutgoingCallDialog::show(const LLSD& key)  	std::string callee_name = mPayload["session_name"].asString(); -	LLUUID session_id = mPayload["session_id"].asUUID(); -  	if (callee_name == "anonymous") // obsolete? Likely was part of avaline support  	{  		callee_name = getString("anonymous"); @@ -2499,7 +2497,7 @@ void LLIncomingCallDialog::processCallResponse(S32 response, const LLSD &payload  				}  			} -			LLUUID new_session_id = gIMMgr->addSession(correct_session_name, type, session_id, true); +			gIMMgr->addSession(correct_session_name, type, session_id, true);  			std::string url = gAgent.getRegion()->getCapability(  				"ChatSessionRequest"); @@ -2585,7 +2583,7 @@ bool inviteUserResponse(const LLSD& notification, const LLSD& response)  			}  			else  			{ -				LLUUID new_session_id = gIMMgr->addSession( +				gIMMgr->addSession(  					payload["session_name"].asString(),  					type,  					session_id, true); diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index 707ff2b7b6..e3a6b2dc85 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -437,7 +437,6 @@ bool LLInventoryFilter::checkAgainstFilterType(const LLFolderViewModelItemInvent  bool LLInventoryFilter::checkAgainstFilterType(const LLInventoryItem* item) const  {  	LLInventoryType::EType object_type = item->getInventoryType(); -	const LLUUID object_id = item->getUUID();  	const U32 filterTypes = mFilterOps.mFilterTypes; diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp index 27edc8148e..2c8d372eff 100644 --- a/indra/newview/llinventoryfunctions.cpp +++ b/indra/newview/llinventoryfunctions.cpp @@ -1403,9 +1403,6 @@ bool move_item_to_marketplacelistings(LLInventoryItem* inv_item, LLUUID dest_fol                  LLNotificationsUtil::add("MerchantPasteFailed", subs);                  return false;              } -             -            // Get the parent folder of the moved item : we may have to update it -            LLUUID src_folder = viewer_inv_item->getParentUUID();              if (copy)              { diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 06351dc540..87fd91b23a 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -2711,7 +2711,6 @@ void LLInventoryModel::buildParentChildMap()  			// some accounts has pbroken inventory root folders  			std::string name = "My Inventory"; -			LLUUID prev_root_id = mRootFolderID;  			for (parent_cat_map_t::const_iterator it = mParentChildCategoryTree.begin(),  					 it_end = mParentChildCategoryTree.end(); it != it_end; ++it)  			{ diff --git a/indra/newview/lloutfitgallery.cpp b/indra/newview/lloutfitgallery.cpp index f419e2e06d..5d139ff75f 100644 --- a/indra/newview/lloutfitgallery.cpp +++ b/indra/newview/lloutfitgallery.cpp @@ -1226,7 +1226,7 @@ void LLOutfitGallery::uploadOutfitImage(const std::vector<std::string>& filename          checkRemovePhoto(outfit_id);          std::string upload_pending_name = outfit_id.asString();          std::string upload_pending_desc = ""; -        LLUUID photo_id = upload_new_resource(filename, // file +        upload_new_resource(filename, // file              upload_pending_name,              upload_pending_desc,              0, LLFolderType::FT_NONE, LLInventoryType::IT_NONE, diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index 7270580032..4171fd8822 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -823,8 +823,7 @@ void LLOutfitListBase::onOpen(const LLSD& info)          mCategoriesObserver->addCategory(outfits,              boost::bind(&LLOutfitListBase::refreshList, this, outfits)); -        const LLUUID cof = gInventory.findCategoryUUIDForType(LLFolderType::FT_CURRENT_OUTFIT); - +        //const LLUUID cof = gInventory.findCategoryUUIDForType(LLFolderType::FT_CURRENT_OUTFIT);          // Start observing changes in Current Outfit category.          //mCategoriesObserver->addCategory(cof, boost::bind(&LLOutfitsList::onCOFChanged, this)); diff --git a/indra/newview/llpanellandmedia.cpp b/indra/newview/llpanellandmedia.cpp index 26cd3ff1c1..e379d67e37 100644 --- a/indra/newview/llpanellandmedia.cpp +++ b/indra/newview/llpanellandmedia.cpp @@ -179,7 +179,6 @@ void LLPanelLandMedia::refresh()  		// enable/disable for text label for completeness  		mMediaSizeCtrlLabel->setEnabled( can_change_media && allow_resize ); -		LLUUID tmp = parcel->getMediaID();  		mMediaTextureCtrl->setImageAssetID ( parcel->getMediaID() );  		mMediaTextureCtrl->setEnabled( can_change_media ); diff --git a/indra/newview/llpanelplaces.cpp b/indra/newview/llpanelplaces.cpp index 74ec576554..0f00231643 100644 --- a/indra/newview/llpanelplaces.cpp +++ b/indra/newview/llpanelplaces.cpp @@ -800,7 +800,6 @@ void LLPanelPlaces::onSaveButtonClicked()  	LLStringUtil::trim(current_title_value);  	LLStringUtil::trim(current_notes_value); -	LLUUID item_id = mItem->getUUID();  	LLUUID folder_id = mLandmarkInfo->getLandmarkFolder();  	bool change_parent = folder_id != mItem->getParentUUID(); diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index deebf0cd1b..708ff26ced 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -1055,7 +1055,6 @@ void LLPanelProfileSecondLife::resetData()  void LLPanelProfileSecondLife::processProfileProperties(const LLAvatarData* avatar_data)  { -    LLUUID avatar_id = getAvatarId();      const LLRelationship* relationship = LLAvatarTracker::instance().getBuddyInfo(getAvatarId());      if ((relationship != NULL || gAgent.isGodlike()) && !getSelfProfile())      { diff --git a/indra/newview/llspeakers.cpp b/indra/newview/llspeakers.cpp index ea671a130e..60bada8f58 100644 --- a/indra/newview/llspeakers.cpp +++ b/indra/newview/llspeakers.cpp @@ -982,7 +982,6 @@ void LLActiveSpeakerMgr::updateSpeakerList()  	// clean up text only speakers  	for (speaker_map_t::iterator speaker_it = mSpeakers.begin(); speaker_it != mSpeakers.end(); ++speaker_it)  	{ -		LLUUID speaker_id = speaker_it->first;  		LLSpeaker* speakerp = speaker_it->second;  		if (speakerp->mStatus == LLSpeaker::STATUS_TEXT_ONLY)  		{ diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 3bff01625b..01e4734b3c 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -7651,7 +7651,6 @@ void handle_selected_texture_info(void*)     		map_t::iterator it;     		for (it = faces_per_texture.begin(); it != faces_per_texture.end(); ++it)     		{ -   			LLUUID image_id = it->first;     			U8 te = it->second[0];     			LLViewerTexture* img = node->getObject()->getTEImage(te);     			S32 height = img->getHeight(); diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index e2de7ac825..7abb42dd8a 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -1252,7 +1252,6 @@ bool LLViewerTextEditor::onCopyToInvDialog(const LLSD& notification, const LLSD&  	S32 option = LLNotificationsUtil::getSelectedOption(notification, response);  	if( 0 == option )  	{ -		LLUUID item_id = notification["payload"]["item_id"].asUUID();  		llwchar wc = llwchar(notification["payload"]["item_wc"].asInteger());  		LLInventoryItem* itemp = LLEmbeddedItems::getEmbeddedItemPtr(wc);  		if (itemp) diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 588fb4eb1b..f4d8eb6035 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1307,7 +1307,6 @@ LLWindowCallbacks::DragNDropResult LLViewerWindow::handleDragNDrop( LLWindow *wi                                                            TRUE /* pick_transparent */,                                                             FALSE /* pick_rigged */); -					LLUUID object_id = pick_info.getObjectID();  					S32 object_face = pick_info.mObjectFace;  					std::string url = data; diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index d98a40d188..2e7ccc8334 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -856,10 +856,7 @@ void LLVOVolume::updateTextureVirtualSize(bool forced)  	if (isSculpted())  	{ -		LLSculptParams *sculpt_params = (LLSculptParams *)getParameterEntry(LLNetworkData::PARAMS_SCULPT); -		LLUUID id =  sculpt_params->getSculptTexture(); -		 -		updateSculptTexture(); +        updateSculptTexture(); @@ -1109,7 +1106,6 @@ BOOL LLVOVolume::setVolume(const LLVolumeParams ¶ms_in, const S32 detail, bo  				if (!getVolume()->isMeshAssetLoaded())  				{   					//load request not yet issued, request pipeline load this mesh -					LLUUID asset_id = volume_params.getSculptID();  					S32 available_lod = gMeshRepo.loadMesh(this, volume_params, lod, last_lod);  					if (available_lod != lod)  					{ | 
