refactor TaskInventoryItem Mask -> Permissions to be consistant with how things

are stored in the db.
This commit is contained in:
Sean Dague
2008-07-23 22:14:29 +00:00
parent 3c227390c0
commit cf317f5c33
11 changed files with 145 additions and 128 deletions

View File

@@ -236,7 +236,7 @@ namespace OpenSim.Framework
}
}
public uint BaseMask {
public uint BasePermissions {
get {
return _baseMask;
}
@@ -272,7 +272,7 @@ namespace OpenSim.Framework
}
}
public uint EveryoneMask {
public uint EveryonePermissions {
get {
return _everyoneMask;
}
@@ -299,7 +299,7 @@ namespace OpenSim.Framework
}
}
public uint GroupMask {
public uint GroupPermissions {
get {
return _groupMask;
}
@@ -344,7 +344,7 @@ namespace OpenSim.Framework
}
}
public uint NextOwnerMask {
public uint NextPermissions {
get {
return _nextOwnerMask;
}
@@ -362,7 +362,7 @@ namespace OpenSim.Framework
}
}
public uint OwnerMask {
public uint CurrentPermissions {
get {
return _ownerMask;
}