From 5c558a92c94c8b6eef930f12cf45824765481c92 Mon Sep 17 00:00:00 2001
From: Dave Parks <davep@lindenlab.com>
Date: Wed, 25 Oct 2023 10:36:50 -0500
Subject: [PATCH] DRTVWR-559 Fix for mac build

---
 indra/newview/llinventorygallery.cpp | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/indra/newview/llinventorygallery.cpp b/indra/newview/llinventorygallery.cpp
index 4838ba7a47f..62180bb066f 100644
--- a/indra/newview/llinventorygallery.cpp
+++ b/indra/newview/llinventorygallery.cpp
@@ -2390,17 +2390,11 @@ void LLInventoryGallery::startDrag()
 {
     std::vector<EDragAndDropType> types;
     uuid_vec_t ids;
-    LLToolDragAndDrop::ESource src = LLToolDragAndDrop::SOURCE_AGENT;
     for (LLUUID& selected_id : mSelectedItemIDs)
     {
         const LLInventoryItem* item = gInventory.getItem(selected_id);
         if (item)
         {
-            if (item->getPermissions().getOwner() == ALEXANDRIA_LINDEN_ID)
-            {
-                src = LLToolDragAndDrop::SOURCE_LIBRARY;
-            }
-
             EDragAndDropType type = LLViewerAssetType::lookupDragAndDropType(item->getType());
             types.push_back(type);
             ids.push_back(selected_id);
@@ -2410,11 +2404,6 @@ void LLInventoryGallery::startDrag()
         if (cat && gInventory.isObjectDescendentOf(selected_id, gInventory.getRootFolderID())
             && !LLFolderType::lookupIsProtectedType((cat)->getPreferredType()))
         {
-            if (cat->getOwnerID() == ALEXANDRIA_LINDEN_ID)
-            {
-                src = LLToolDragAndDrop::SOURCE_LIBRARY;
-            }
-
             EDragAndDropType type = LLViewerAssetType::lookupDragAndDropType(cat->getType());
             types.push_back(type);
             ids.push_back(selected_id);
-- 
GitLab