Change SceneObjectPart.LocalID to .LocalId to be case matching

with SceneObjectGroup.LocalId (and hence reduce confusion).
This commit is contained in:
Sean Dague
2008-03-05 18:57:13 +00:00
parent f64611862a
commit 4ea52b2105
9 changed files with 40 additions and 40 deletions

View File

@@ -186,7 +186,7 @@ namespace OpenSim.Region.Environment.Scenes
sceneObject.SetScene(m_parentScene);
foreach (SceneObjectPart part in sceneObject.Children.Values)
{
part.LocalID = m_parentScene.PrimIDAllocate();
part.LocalId = m_parentScene.PrimIDAllocate();
}
sceneObject.UpdateParentIDs();
@@ -378,7 +378,7 @@ namespace OpenSim.Region.Environment.Scenes
objupdate.ObjectData[1].UpdateFlags = 276957500; // flags; // ??
objupdate.ObjectData[1].ID = p.LocalID;
objupdate.ObjectData[1].ID = p.LocalId;
objupdate.ObjectData[1].FullID = p.UUID;
objupdate.ObjectData[1].OwnerID = p.OwnerID;
objupdate.ObjectData[1].Text = Helpers.StringToField(p.Text);