diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-10-05 20:08:36 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-10-05 20:22:28 +0300 |
commit | 08a3b56669880101aa705c98e60b76e92d26c93b (patch) | |
tree | 669d14268d2ae4062d411e1409039181aacfb1a3 | |
parent | 085d1bc5327646c85fef1d99223a197dd9cf1e3a (diff) |
SL-19826 Fix mac build issue (unused variable)
-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() |