diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-06-21 18:03:23 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-06-21 18:03:23 -0700 |
commit | f143da27bf09b0e7a9b73de80609b2326a7e672e (patch) | |
tree | 739255a2cfe1c1468cdb468afa83bdbbd4ae3c14 /indra/newview/llselectmgr.h | |
parent | aea6b0c70ccb1a330c1ee2a0f66c3fa72d2700ca (diff) |
PATH-760: Ensuring that the pathfinding attribute field works correctly with multiple objects selected.
Diffstat (limited to 'indra/newview/llselectmgr.h')
-rw-r--r-- | indra/newview/llselectmgr.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/newview/llselectmgr.h b/indra/newview/llselectmgr.h index 9787493e43..488f8f2efb 100644 --- a/indra/newview/llselectmgr.h +++ b/indra/newview/llselectmgr.h @@ -564,6 +564,22 @@ public: BOOL selectGetRootsNonPermanentEnforced(); BOOL selectGetNonPermanentEnforced(); + // returns TRUE if is all objects are permanent + BOOL selectGetRootsPermanent(); + BOOL selectGetPermanent(); + + // returns TRUE if is all objects are character + BOOL selectGetRootsCharacter(); + BOOL selectGetCharacter(); + + // returns TRUE if is all objects are not permanent + BOOL selectGetRootsNonPermanent(); + BOOL selectGetNonPermanent(); + + // returns TRUE if is all objects are not character + BOOL selectGetRootsNonCharacter(); + BOOL selectGetNonCharacter(); + // returns TRUE if selected objects can be transferred. BOOL selectGetRootsTransfer(); |