diff options
author | Charles Krinke | 2008-03-02 20:29:59 +0000 |
---|---|---|
committer | Charles Krinke | 2008-03-02 20:29:59 +0000 |
commit | 30ebd15926fa5625b27bca783c13f007c593cbbd (patch) | |
tree | 0ac25573b0d125feb1919aa9e18a036f798d4105 /OpenSim/Framework | |
parent | Applying Ahzzmandius' second patch from bug 701. (diff) | |
download | opensim-SC_OLD-30ebd15926fa5625b27bca783c13f007c593cbbd.zip opensim-SC_OLD-30ebd15926fa5625b27bca783c13f007c593cbbd.tar.gz opensim-SC_OLD-30ebd15926fa5625b27bca783c13f007c593cbbd.tar.bz2 opensim-SC_OLD-30ebd15926fa5625b27bca783c13f007c593cbbd.tar.xz |
Update names of handler010 through handler019
to more appropriate names consistent with use.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/RegionCommsListener.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Framework/RegionCommsListener.cs b/OpenSim/Framework/RegionCommsListener.cs index 35e2f26..4d9411d 100644 --- a/OpenSim/Framework/RegionCommsListener.cs +++ b/OpenSim/Framework/RegionCommsListener.cs | |||
@@ -55,8 +55,8 @@ namespace OpenSim.Framework | |||
55 | private AcknowledgeAgentCross handler007 = null; // OnAcknowledgeAgentCrossed; | 55 | private AcknowledgeAgentCross handler007 = null; // OnAcknowledgeAgentCrossed; |
56 | private AcknowledgePrimCross handler008 = null; // OnAcknowledgePrimCrossed; | 56 | private AcknowledgePrimCross handler008 = null; // OnAcknowledgePrimCrossed; |
57 | private CloseAgentConnection handler009 = null; // OnCloseAgentConnection; | 57 | private CloseAgentConnection handler009 = null; // OnCloseAgentConnection; |
58 | private RegionUp handler010 = null; // OnRegionUp; | 58 | private RegionUp handlerRegionUp = null; // OnRegionUp; |
59 | private ChildAgentUpdate handler011 = null; // OnChildAgentUpdate; | 59 | private ChildAgentUpdate handlerChildAgentUpdate = null; // OnChildAgentUpdate; |
60 | 60 | ||
61 | public string debugRegionName = String.Empty; | 61 | public string debugRegionName = String.Empty; |
62 | 62 | ||
@@ -92,10 +92,10 @@ namespace OpenSim.Framework | |||
92 | 92 | ||
93 | public virtual bool TriggerRegionUp(RegionInfo region) | 93 | public virtual bool TriggerRegionUp(RegionInfo region) |
94 | { | 94 | { |
95 | handler010 = OnRegionUp; | 95 | handlerRegionUp = OnRegionUp; |
96 | if (handler010 != null) | 96 | if (handlerRegionUp != null) |
97 | { | 97 | { |
98 | handler010(region); | 98 | handlerRegionUp(region); |
99 | return true; | 99 | return true; |
100 | } | 100 | } |
101 | return false; | 101 | return false; |
@@ -103,10 +103,10 @@ namespace OpenSim.Framework | |||
103 | 103 | ||
104 | public virtual bool TriggerChildAgentUpdate(ulong regionHandle, ChildAgentDataUpdate cAgentData) | 104 | public virtual bool TriggerChildAgentUpdate(ulong regionHandle, ChildAgentDataUpdate cAgentData) |
105 | { | 105 | { |
106 | handler011 = OnChildAgentUpdate; | 106 | handlerChildAgentUpdate = OnChildAgentUpdate; |
107 | if (handler011 != null) | 107 | if (handlerChildAgentUpdate != null) |
108 | { | 108 | { |
109 | handler011(regionHandle, cAgentData); | 109 | handlerChildAgentUpdate(regionHandle, cAgentData); |
110 | return true; | 110 | return true; |
111 | } | 111 | } |
112 | return false; | 112 | return false; |