diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-05-01 14:22:58 -0700 |
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-05-01 14:22:58 -0700 |
| commit | 852377c676bc3a8183073e41357499f06f40fb1b (patch) | |
| tree | 53e8b48d65522b74876432819bc4791796d9ab34 /indra/newview/llpathfindingmanager.h | |
| parent | 3c18573ed0278b420e06b1c2ce5fc19232332aba (diff) | |
Switching the functionality of the linksets and character request handling to no longer return values directly, but rather to report status only through the callbacks.
Diffstat (limited to 'indra/newview/llpathfindingmanager.h')
| -rw-r--r-- | indra/newview/llpathfindingmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpathfindingmanager.h b/indra/newview/llpathfindingmanager.h index f5d7cd1332..067a2c2515 100644 --- a/indra/newview/llpathfindingmanager.h +++ b/indra/newview/llpathfindingmanager.h @@ -98,10 +98,10 @@ public: EAgentState getLastKnownNonErrorAgentState() const; void requestSetAgentState(EAgentState pAgentState); - ERequestStatus requestGetLinksets(request_id_t pRequestId, linksets_callback_t pLinksetsCallback) const; - ERequestStatus requestSetLinksets(request_id_t pRequestId, LLPathfindingLinksetListPtr pLinksetList, LLPathfindingLinkset::ELinksetUse pLinksetUse, S32 pA, S32 pB, S32 pC, S32 pD, linksets_callback_t pLinksetsCallback) const; + void requestGetLinksets(request_id_t pRequestId, linksets_callback_t pLinksetsCallback) const; + void requestSetLinksets(request_id_t pRequestId, LLPathfindingLinksetListPtr pLinksetList, LLPathfindingLinkset::ELinksetUse pLinksetUse, S32 pA, S32 pB, S32 pC, S32 pD, linksets_callback_t pLinksetsCallback) const; - ERequestStatus requestGetCharacters(request_id_t pRequestId, characters_callback_t pCharactersCallback) const; + void requestGetCharacters(request_id_t pRequestId, characters_callback_t pCharactersCallback) const; protected: |
