summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMatthew Breindel (Falcon) <falcon@lindenlab.com>2010-04-01 11:34:05 -0700
committerMatthew Breindel (Falcon) <falcon@lindenlab.com>2010-04-01 11:34:05 -0700
commit9aebfe6f1200e22505a7a4bb9af5e8b1f68d4739 (patch)
treedb95d63bc2645b62398e78270fa1f8409f2082c3 /indra/newview
parent41aa3d0dcba64c3d1258d8b373fb5c1d13b399a1 (diff)
Fixed line ending
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerobject.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp
index bae84415d7..620e270177 100644
--- a/indra/newview/llviewerobject.cpp
+++ b/indra/newview/llviewerobject.cpp
@@ -5235,15 +5235,15 @@ public:
LLSD& currObjectData = objectData[i];
U32 localID = currObjectData["LocalID"].asInteger();
- // Iterate through nodes at end, since it can be on both the regular AND hover list
- struct f : public LLSelectedNodeFunctor
- {
- U32 mID;
- f(const U32& id) : mID(id) {}
- virtual bool apply(LLSelectNode* node)
- {
- return (node->getObject() && node->getObject()->mLocalID == mID );
- }
+ // Iterate through nodes at end, since it can be on both the regular AND hover list
+ struct f : public LLSelectedNodeFunctor
+ {
+ U32 mID;
+ f(const U32& id) : mID(id) {}
+ virtual bool apply(LLSelectNode* node)
+ {
+ return (node->getObject() && node->getObject()->mLocalID == mID );
+ }
} func(localID);
LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstNode(&func);