diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-01-19 18:22:17 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-01-19 18:22:17 -0800 |
commit | fe637c5f9571e91c8e90440a0677e5c40b7bf648 (patch) | |
tree | 2150d1b3f303bf1ec165cea45ae6a9d87a334fec /indra/newview/llfloaterpathfindinglinksets.h | |
parent | 53175f835ea0170a38ccaa49397eb09d26a52984 (diff) |
PATH-225: Replacing the Fixed and Walkable columns with a single State column.
Diffstat (limited to 'indra/newview/llfloaterpathfindinglinksets.h')
-rw-r--r-- | indra/newview/llfloaterpathfindinglinksets.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/indra/newview/llfloaterpathfindinglinksets.h b/indra/newview/llfloaterpathfindinglinksets.h index 02d90accf1..915d799079 100644 --- a/indra/newview/llfloaterpathfindinglinksets.h +++ b/indra/newview/llfloaterpathfindinglinksets.h @@ -64,12 +64,10 @@ public: EPathState getPathState() const;
void setPathState(EPathState pPathState);
+ static EPathState getPathState(bool pIsPermanent, bool pIsWalkable);
static BOOL isPermanent(EPathState pPathState);
static BOOL isWalkable(EPathState pPathState);
- BOOL isPermanent() const;
- BOOL isWalkable() const;
-
BOOL isPhantom() const;
void setPhantom(BOOL pIsPhantom);
@@ -93,8 +91,7 @@ private: std::string mDescription;
U32 mLandImpact;
LLVector3 mLocation;
- BOOL mIsPermanent;
- BOOL mIsWalkable;
+ EPathState mPathState;
BOOL mIsPhantom;
S32 mA;
S32 mB;
|