diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-10-05 20:08:36 +0300 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-10-06 13:26:26 -0400 |
commit | d1b7bbc7efcaf0e7b449ba00aa9f1246504b0a13 (patch) | |
tree | fa41858015f6db4ae653703ef8f42aba217aed03 /indra/newview/llinventorygallery.cpp | |
parent | 2705e2bb5bb0fbd66958f83987c355e5d3f93c7b (diff) |
SL-19826 Fix mac build issue (unused variable)
(cherry picked from commit 08a3b56669880101aa705c98e60b76e92d26c93b)
Diffstat (limited to 'indra/newview/llinventorygallery.cpp')
-rw-r--r-- | indra/newview/llinventorygallery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorygallery.cpp b/indra/newview/llinventorygallery.cpp index 4838ba7a47..0e4c64a641 100644 --- a/indra/newview/llinventorygallery.cpp +++ b/indra/newview/llinventorygallery.cpp @@ -2420,7 +2420,7 @@ void LLInventoryGallery::startDrag() ids.push_back(selected_id); } } - LLToolDragAndDrop::getInstance()->beginMultiDrag(types, ids, LLToolDragAndDrop::SOURCE_AGENT); + LLToolDragAndDrop::getInstance()->beginMultiDrag(types, ids, src); } bool LLInventoryGallery::areViewsInitialized() |