diff options
author | Justin Clark-Casey (justincc) | 2013-07-23 23:32:24 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-07-23 23:32:24 +0100 |
commit | fa2653c8e1a5712777f040834bb49aa69661f5eb (patch) | |
tree | 4b10e7be30e73ae41e4c2f12088294a13b615eac /OpenSim/Region/Framework/Scenes/EventManager.cs | |
parent | Correct issue where the last instance of a sampled stat was shown 3x larger t... (diff) | |
parent | Don't touch the Current Outfit folder also on coming back home (diff) | |
download | opensim-SC_OLD-fa2653c8e1a5712777f040834bb49aa69661f5eb.zip opensim-SC_OLD-fa2653c8e1a5712777f040834bb49aa69661f5eb.tar.gz opensim-SC_OLD-fa2653c8e1a5712777f040834bb49aa69661f5eb.tar.bz2 opensim-SC_OLD-fa2653c8e1a5712777f040834bb49aa69661f5eb.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/EventManager.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/EventManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs index 61b0ebd..39d7512 100644 --- a/OpenSim/Region/Framework/Scenes/EventManager.cs +++ b/OpenSim/Region/Framework/Scenes/EventManager.cs | |||
@@ -742,7 +742,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
742 | public event OnIncomingSceneObjectDelegate OnIncomingSceneObject; | 742 | public event OnIncomingSceneObjectDelegate OnIncomingSceneObject; |
743 | public delegate void OnIncomingSceneObjectDelegate(SceneObjectGroup so); | 743 | public delegate void OnIncomingSceneObjectDelegate(SceneObjectGroup so); |
744 | 744 | ||
745 | public delegate void NewInventoryItemUploadComplete(UUID avatarID, UUID assetID, string name, int userlevel); | 745 | public delegate void NewInventoryItemUploadComplete(UUID avatarID, AssetType type, UUID assetID, string name, int userlevel); |
746 | 746 | ||
747 | public event NewInventoryItemUploadComplete OnNewInventoryItemUploadComplete; | 747 | public event NewInventoryItemUploadComplete OnNewInventoryItemUploadComplete; |
748 | 748 | ||
@@ -2146,7 +2146,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2146 | } | 2146 | } |
2147 | } | 2147 | } |
2148 | 2148 | ||
2149 | public void TriggerOnNewInventoryItemUploadComplete(UUID agentID, UUID AssetID, String AssetName, int userlevel) | 2149 | public void TriggerOnNewInventoryItemUploadComplete(UUID agentID, AssetType type, UUID AssetID, String AssetName, int userlevel) |
2150 | { | 2150 | { |
2151 | NewInventoryItemUploadComplete handlerNewInventoryItemUpdateComplete = OnNewInventoryItemUploadComplete; | 2151 | NewInventoryItemUploadComplete handlerNewInventoryItemUpdateComplete = OnNewInventoryItemUploadComplete; |
2152 | if (handlerNewInventoryItemUpdateComplete != null) | 2152 | if (handlerNewInventoryItemUpdateComplete != null) |
@@ -2155,7 +2155,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2155 | { | 2155 | { |
2156 | try | 2156 | try |
2157 | { | 2157 | { |
2158 | d(agentID, AssetID, AssetName, userlevel); | 2158 | d(agentID, type, AssetID, AssetName, userlevel); |
2159 | } | 2159 | } |
2160 | catch (Exception e) | 2160 | catch (Exception e) |
2161 | { | 2161 | { |