mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
further refactor and rename of InventoryFolderBase properties
to reflect what they really are.
This commit is contained in:
@@ -592,7 +592,7 @@ namespace OpenSim.Data.SQLite
|
||||
InventoryFolderBase folder = new InventoryFolderBase();
|
||||
folder.ID = new LLUUID((string) row["UUID"]);
|
||||
folder.Name = (string) row["name"];
|
||||
folder.AgentID = new LLUUID((string) row["agentID"]);
|
||||
folder.Owner = new LLUUID((string) row["agentID"]);
|
||||
folder.ParentID = new LLUUID((string) row["parentID"]);
|
||||
folder.Type = Convert.ToInt16(row["type"]);
|
||||
folder.Version = Convert.ToUInt16(row["version"]);
|
||||
@@ -603,7 +603,7 @@ namespace OpenSim.Data.SQLite
|
||||
{
|
||||
row["UUID"] = Util.ToRawUuidString(folder.ID);
|
||||
row["name"] = folder.Name;
|
||||
row["agentID"] = Util.ToRawUuidString(folder.AgentID);
|
||||
row["agentID"] = Util.ToRawUuidString(folder.Owner);
|
||||
row["parentID"] = Util.ToRawUuidString(folder.ParentID);
|
||||
row["type"] = folder.Type;
|
||||
row["version"] = folder.Version;
|
||||
|
||||
Reference in New Issue
Block a user