diff options
author | Sean Dague | 2008-04-08 23:26:31 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-08 23:26:31 +0000 |
commit | a6d27e09295cd0160d3439fbfa6598f08c431608 (patch) | |
tree | fc416f3da7af6fd14a06d24a1a43e924c458853e /OpenSim/Framework/InventoryFolderBase.cs | |
parent | added migration script for SqliteAssets (diff) | |
download | opensim-SC_OLD-a6d27e09295cd0160d3439fbfa6598f08c431608.zip opensim-SC_OLD-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.gz opensim-SC_OLD-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.bz2 opensim-SC_OLD-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.xz |
further refactor and rename of InventoryFolderBase properties
to reflect what they really are.
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 | ||