From 61baa570fbc4b0be5bb124e816784c252e66a76f Mon Sep 17 00:00:00 2001
From: Kitty Barnett <develop@catznip.com>
Date: Sat, 18 Sep 2010 08:56:08 +0200
Subject: [PATCH] [Appearance/Misc] - fixed : attachments that attach and then
 instantly detach don't have their COF link removed

--HG--
branch : Appearance-Misc
---
 .hgpatchinfo/Appearance-Misc.desc |  3 ++-
 indra/newview/llappearancemgr.cpp | 16 ++++++++++++++++
 indra/newview/llappearancemgr.h   | 10 ++--------
 3 files changed, 20 insertions(+), 9 deletions(-)

diff --git a/.hgpatchinfo/Appearance-Misc.desc b/.hgpatchinfo/Appearance-Misc.desc
index fff24b744a..86570b97ac 100644
--- a/.hgpatchinfo/Appearance-Misc.desc
+++ b/.hgpatchinfo/Appearance-Misc.desc
@@ -10,4 +10,5 @@
     -> maps secondary attachment point range [39,68] onto [1,30]
     -> only dislays "secondary attachment points" correctly for *other* avatars (by design)
 - fixed   : Add to/Replace Outfit removes newly worn attachments on completion
-- fixed   : LLWearableBridge::removeAllClothesFromAvatar() doesn't remove all clothing from the avatar
\ No newline at end of file
+- fixed   : LLWearableBridge::removeAllClothesFromAvatar() doesn't remove all clothing from the avatar
+- fixed   : attachments that attach and then instantly detach don't have their COF link removed
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index b7687a29f4..2672110651 100644
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -2816,6 +2816,22 @@ void LLAppearanceMgr::unregisterAttachment(const LLUUID& item_id)
 	   }
 }
 
+// [SL:KB] - Patch: Appearance-SyncAttach | Checked: 2010-09-18 (Catznip-2.1.2e) | Modified: Catznip-2.1.2e
+void LLAppearanceMgr::onRegisterAttachmentComplete(const LLUUID& idItem)
+{
+	const LLUUID& idItemBase = gInventory.getLinkedItemID(idItem);
+
+	// Remove the attachment from the pending list
+	uuid_vec_t::iterator itPendingObjLink = std::find(mPendingObjLinks.begin(), mPendingObjLinks.end(), idItemBase);
+	if (itPendingObjLink != mPendingObjLinks.end())
+		mPendingObjLinks.erase(itPendingObjLink);
+
+	// It may have been detached already in which case we should remove the COF link
+	if ( (isAgentAvatarValid()) && (!gAgentAvatarp->isWearingAttachment(idItemBase)) )
+		removeCOFItemLinks(idItem, false);
+}
+// [/SL:KB]
+
 BOOL LLAppearanceMgr::getIsInCOF(const LLUUID& obj_id) const
 {
 	return gInventory.isObjectDescendentOf(obj_id, getCOF());
diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h
index d77d726b74..e7fdd73c8c 100644
--- a/indra/newview/llappearancemgr.h
+++ b/indra/newview/llappearancemgr.h
@@ -217,15 +217,9 @@ private:
 
 	std::auto_ptr<LLOutfitUnLockTimer> mUnlockOutfitTimer;
 
-// [SL:KB] - Patch: Appearance-SyncAttach | Checked: 2010-08-31 (Catznip-2.1.2a) | Added: Catznip-2.1.2a
+// [SL:KB] - Patch: Appearance-SyncAttach | Checked: 2010-09-18 (Catznip-2.1.2e) | Modified: Catznip-2.1.2e
 public:
-	void onRegisterAttachmentComplete(const LLUUID& idItem)
-	{
-		const LLUUID& idItemBase = gInventory.getLinkedItemID(idItem);
-		uuid_vec_t::iterator itPendingObjLink = std::find(mPendingObjLinks.begin(), mPendingObjLinks.end(), idItemBase);
-		if (itPendingObjLink != mPendingObjLinks.end())
-			mPendingObjLinks.erase(itPendingObjLink);
-	}
+	void onRegisterAttachmentComplete(const LLUUID& idItem);
 private:
 	uuid_vec_t mPendingObjLinks;
 // [/SL:KB]
-- 
GitLab