aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorMelanie2011-04-17 22:54:23 +0100
committerMelanie2011-04-17 22:54:23 +0100
commitdbf52b8cd1690e9df3501295c8c99d35988781d3 (patch)
treed96a94ebf7edd430e7ad45bea55bedecfa6f96ad /OpenSim/Region/ClientStack/LindenUDP
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC-dbf52b8cd1690e9df3501295c8c99d35988781d3.zip
opensim-SC-dbf52b8cd1690e9df3501295c8c99d35988781d3.tar.gz
opensim-SC-dbf52b8cd1690e9df3501295c8c99d35988781d3.tar.bz2
opensim-SC-dbf52b8cd1690e9df3501295c8c99d35988781d3.tar.xz
Correct the delegate for classified deletes
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index e72159c..e7afbb3 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -255,7 +255,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
255 public event ClassifiedInfoRequest OnClassifiedInfoRequest; 255 public event ClassifiedInfoRequest OnClassifiedInfoRequest;
256 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; 256 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
257 public event ClassifiedDelete OnClassifiedDelete; 257 public event ClassifiedDelete OnClassifiedDelete;
258 public event ClassifiedDelete OnClassifiedGodDelete; 258 public event ClassifiedGodDelete OnClassifiedGodDelete;
259 public event EventNotificationAddRequest OnEventNotificationAddRequest; 259 public event EventNotificationAddRequest OnEventNotificationAddRequest;
260 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 260 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
261 public event EventGodDelete OnEventGodDelete; 261 public event EventGodDelete OnEventGodDelete;
@@ -10812,6 +10812,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
10812 if (handlerClassifiedGodDelete != null) 10812 if (handlerClassifiedGodDelete != null)
10813 handlerClassifiedGodDelete( 10813 handlerClassifiedGodDelete(
10814 classifiedGodDelete.Data.ClassifiedID, 10814 classifiedGodDelete.Data.ClassifiedID,
10815 classifiedGodDelete.Data.QueryID,
10815 this); 10816 this);
10816 return true; 10817 return true;
10817 } 10818 }