diff options
Diffstat (limited to 'OpenSim/Framework/InventoryFolderBase.cs')
-rw-r--r-- | OpenSim/Framework/InventoryFolderBase.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/InventoryFolderBase.cs b/OpenSim/Framework/InventoryFolderBase.cs index 19d3d40..3284c59 100644 --- a/OpenSim/Framework/InventoryFolderBase.cs +++ b/OpenSim/Framework/InventoryFolderBase.cs | |||
@@ -45,7 +45,7 @@ namespace OpenSim.Framework | |||
45 | /// <summary> | 45 | /// <summary> |
46 | /// The agent who's inventory this is contained by | 46 | /// The agent who's inventory this is contained by |
47 | /// </summary> | 47 | /// </summary> |
48 | private LLUUID _agentID; | 48 | private LLUUID _owner; |
49 | 49 | ||
50 | /// <summary> | 50 | /// <summary> |
51 | /// The folder this folder is contained in | 51 | /// The folder this folder is contained in |
@@ -76,12 +76,12 @@ namespace OpenSim.Framework | |||
76 | } | 76 | } |
77 | } | 77 | } |
78 | 78 | ||
79 | public LLUUID AgentID { | 79 | public LLUUID Owner { |
80 | get { | 80 | get { |
81 | return _agentID; | 81 | return _owner; |
82 | } | 82 | } |
83 | set { | 83 | set { |
84 | _agentID = value; | 84 | _owner = value; |
85 | } | 85 | } |
86 | } | 86 | } |
87 | 87 | ||