From 602dafae55663d51064067e14072f0c0f4e8ed00 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Fri, 20 Feb 2009 17:18:07 +0000 Subject: * Renamed and encapsulated m_sceneGraph as SceneGraph for ccc --- OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs') diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 6d0927b..69bc554 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs @@ -1116,13 +1116,13 @@ namespace OpenSim.Region.Framework.Scenes scriptScore = 0; scriptScore += (float)count; - SceneGraph d = m_scene.m_sceneGraph; + SceneGraph d = m_scene.SceneGraph; d.AddToScriptLPS(count); } public void AddActiveScriptCount(int count) { - SceneGraph d = m_scene.m_sceneGraph; + SceneGraph d = m_scene.SceneGraph; d.AddActiveScripts(count); } @@ -1858,7 +1858,7 @@ namespace OpenSim.Region.Framework.Scenes { if (m_scene == null) // Need to check here as it's null during object creation return; - m_scene.m_sceneGraph.AddToUpdateList(this); + m_scene.SceneGraph.AddToUpdateList(this); } /// -- cgit v1.1