diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-02-21 18:40:40 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-02-21 18:40:40 -0800 |
commit | 1757f3967874a2885b45e3324bf19f677e76f6bc (patch) | |
tree | 388a9a8ac49314e30cd66e926bebb26a40056516 /indra/newview/llfloaterpathfindingbasic.h | |
parent | 85660a9b95e466abc064304869a79db393543440 (diff) |
PATH-296: Refining the behavior of the freeze/unfreeze functionality to support both basic and edit/test pathfinding floaters open at the same time.
Diffstat (limited to 'indra/newview/llfloaterpathfindingbasic.h')
-rw-r--r-- | indra/newview/llfloaterpathfindingbasic.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/indra/newview/llfloaterpathfindingbasic.h b/indra/newview/llfloaterpathfindingbasic.h index 356a270ca0..f765917cd7 100644 --- a/indra/newview/llfloaterpathfindingbasic.h +++ b/indra/newview/llfloaterpathfindingbasic.h @@ -42,7 +42,8 @@ class LLFloaterPathfindingBasic public: virtual BOOL postBuild(); - virtual void onOpen(const LLSD& key); + virtual void onOpen(const LLSD& pKey); + virtual void onClose(bool pIsAppQuitting); protected: @@ -59,12 +60,12 @@ private: void setAgentState(LLPathfindingManager::EAgentState pAgentState); - LLTextBase *mStatusText; - LLTextBase *mUnfreezeLabel; - LLButton *mUnfreezeButton; - LLTextBase *mFreezeLabel; - LLButton *mFreezeButton; - LLPathfindingManager::EAgentState mAgentState; + LLTextBase *mStatusText; + LLTextBase *mUnfreezeLabel; + LLButton *mUnfreezeButton; + LLTextBase *mFreezeLabel; + LLButton *mFreezeButton; + LLPathfindingManager::agent_state_slot_t mAgentStateSlot; }; #endif // LL_LLFLOATERPATHFINDINGBASIC_H |