From 7794fc3766a71f6c708b53674064f69279434d1e Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sun, 2 Mar 2008 22:28:48 +0000 Subject: Change handler001 through handler009 to more appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers. --- OpenSim/Region/Environment/Scenes/ScenePresence.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs') diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index ef23432..2c201ba 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs @@ -116,7 +116,7 @@ namespace OpenSim.Region.Environment.Scenes private readonly List m_knownChildRegions = new List(); //neighbouring regions we have enabled a child agent in - private SignificantClientMovement handler001 = null; //OnSignificantClientMovement; + private SignificantClientMovement handlerSignificantClientMovement = null; //OnSignificantClientMovement; /// @@ -1484,10 +1484,10 @@ namespace OpenSim.Region.Environment.Scenes if (Util.GetDistanceTo(AbsolutePosition, posLastSignificantMove) > 0.5) { posLastSignificantMove = AbsolutePosition; - handler001 = OnSignificantClientMovement; - if (handler001 != null) + handlerSignificantClientMovement = OnSignificantClientMovement; + if (handlerSignificantClientMovement != null) { - handler001(m_controllingClient); + handlerSignificantClientMovement(m_controllingClient); m_scene.NotifyMyCoarseLocationChange(); } } -- cgit v1.1