summaryrefslogtreecommitdiff
path: root/indra/newview/llpathfindingobject.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-08-14 16:04:12 -0700
committerTodd Stinson <stinson@lindenlab.com>2012-08-14 16:04:12 -0700
commitfddaf38f892aa608f9db9c034f6c583d638b6fcf (patch)
tree5f30b0c26b42df2e4e3a0a65bd1bfa6b599a3191 /indra/newview/llpathfindingobject.h
parent683a96a5f1e9111d62710fe621d52192d34079ed (diff)
PATH-849: Group objects were losing their [group] identifier following the last commit. This should fix that issue.
Diffstat (limited to 'indra/newview/llpathfindingobject.h')
-rw-r--r--indra/newview/llpathfindingobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpathfindingobject.h b/indra/newview/llpathfindingobject.h
index 81b6a2402f..b8d3ca2364 100644
--- a/indra/newview/llpathfindingobject.h
+++ b/indra/newview/llpathfindingobject.h
@@ -62,9 +62,9 @@ public:
inline BOOL isGroupOwned() const {return mIsGroupOwned;};
inline const LLVector3& getLocation() const {return mLocation;};
- typedef boost::function<void (const LLUUID &, const std::string &)> name_callback_t;
- typedef boost::signals2::signal<void (const LLUUID &, const std::string &)> name_signal_t;
- typedef boost::signals2::connection name_connection_t;
+ typedef boost::function<void (const LLPathfindingObject *)> name_callback_t;
+ typedef boost::signals2::signal<void (const LLPathfindingObject *)> name_signal_t;
+ typedef boost::signals2::connection name_connection_t;
name_connection_t registerOwnerNameListener(name_callback_t pOwnerNameCallback);