summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-09-25 18:52:37 +0300
committerGitHub <noreply@github.com>2024-09-25 18:52:37 +0300
commit4b2b94f4864f2e2e7d76f4f17b2d58bb959b3edb (patch)
treec03053fa561e5e85bd1b18f4f54a71b2bec5a6b4 /indra/newview
parent576c558759aa84df7b30ee29ca55143719d73028 (diff)
parent5d7b3abe7759545b5ff12dc8ae5a6de9ed258953 (diff)
Merge pull request #2681 from secondlife/nat/xcode-16
Generalize LLPointer's comparison operators to allow comparable LLPointer types.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index d35a504228..7f45e109cb 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -1331,7 +1331,7 @@ LLWindowCallbacks::DragNDropResult LLViewerWindow::handleDragNDrop( LLWindow *wi
// Check the whitelist, if there's media (otherwise just show it)
if (te->getMediaData() == NULL || te->getMediaData()->checkCandidateUrl(url))
{
- if (obj != mDragHoveredObject.get())
+ if (obj != mDragHoveredObject)
{
// Highlight the dragged object
LLSelectMgr::getInstance()->unhighlightObjectOnly(mDragHoveredObject);