mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
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.
This commit is contained in:
@@ -54,7 +54,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
protected ulong m_regionHandle;
|
||||
|
||||
public event PrimCountTaintedDelegate OnPrimCountTainted;
|
||||
private PrimCountTaintedDelegate handler001 = null;
|
||||
private PrimCountTaintedDelegate handlerPrimCountTainted = null;
|
||||
|
||||
/// <summary>
|
||||
/// Signal whether the non-inventory attributes of any prims in the group have changed
|
||||
@@ -1534,10 +1534,10 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
/// </summary>
|
||||
public void TriggerTainted()
|
||||
{
|
||||
handler001 = OnPrimCountTainted;
|
||||
if (handler001 != null)
|
||||
handlerPrimCountTainted = OnPrimCountTainted;
|
||||
if (handlerPrimCountTainted != null)
|
||||
{
|
||||
handler001();
|
||||
handlerPrimCountTainted();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user