From a6d27e09295cd0160d3439fbfa6598f08c431608 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Tue, 8 Apr 2008 23:26:31 +0000 Subject: further refactor and rename of InventoryFolderBase properties to reflect what they really are. --- OpenSim/Data/SQLite/SQLiteInventoryStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Data/SQLite') diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs index e8663b4..4ccea59 100644 --- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs @@ -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; -- cgit v1.1