further refactor and rename of InventoryFolderBase properties

to reflect what they really are.
This commit is contained in:
Sean Dague
2008-04-08 23:26:31 +00:00
parent 8c82117207
commit a6d27e0929
12 changed files with 45 additions and 45 deletions

View File

@@ -45,7 +45,7 @@ namespace OpenSim.Framework
/// <summary>
/// The agent who's inventory this is contained by
/// </summary>
private LLUUID _agentID;
private LLUUID _owner;
/// <summary>
/// The folder this folder is contained in
@@ -76,12 +76,12 @@ namespace OpenSim.Framework
}
}
public LLUUID AgentID {
public LLUUID Owner {
get {
return _agentID;
return _owner;
}
set {
_agentID = value;
_owner = value;
}
}