diff options
author | William Todd Stinson <stinson@lindenlab.com> | 2012-02-25 23:49:41 -0800 |
---|---|---|
committer | William Todd Stinson <stinson@lindenlab.com> | 2012-02-25 23:49:41 -0800 |
commit | 3b4e4f8bc98832ac5fdd211dbf4a611e24c076a6 (patch) | |
tree | 8d442a6c9b467f144e7feb9eab58bdcec409c6ed /indra/newview/llpathfindinglinkset.h | |
parent | 460a58bfc4eea07b5cdcb6192a955cb180fb9297 (diff) |
PATH-341: BUGFIX Clamping the walkability coefficient text inputs to maximum value.
Diffstat (limited to 'indra/newview/llpathfindinglinkset.h')
-rw-r--r-- | indra/newview/llpathfindinglinkset.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpathfindinglinkset.h b/indra/newview/llpathfindinglinkset.h index 3f9217fa3c..590fcd3f1a 100644 --- a/indra/newview/llpathfindinglinkset.h +++ b/indra/newview/llpathfindinglinkset.h @@ -76,6 +76,9 @@ public: LLSD encodeAlteredFields(ELinksetUse pLinksetUse, S32 pA, S32 pB, S32 pC, S32 pD) const;
+ static const S32 MIN_WALKABILITY_VALUE;
+ static const S32 MAX_WALKABILITY_VALUE;
+
protected:
private:
@@ -86,9 +89,6 @@ private: static BOOL isPermanent(ELinksetUse pLinksetUse);
static BOOL isWalkable(ELinksetUse pLinksetUse);
- static const S32 MIN_WALKABILITY_VALUE;
- static const S32 MAX_WALKABILITY_VALUE;
-
LLUUID mUUID;
bool mIsTerrain;
std::string mName;
|