aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
authorMelanie2010-12-30 00:31:59 +0100
committerMelanie2010-12-30 00:31:59 +0100
commit2cb2bff9b2ab68c325b0142da0b37730be9a12a3 (patch)
tree147d2d65fa710842f26afe97713f4de60d14889d /OpenSim/Client
parentCopying a ref type under lock doesn't dissociate it from the source. (diff)
downloadopensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.zip
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.gz
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.bz2
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.xz
Implement SendPlacesReply
Diffstat (limited to 'OpenSim/Client')
-rw-r--r--OpenSim/Client/MXP/ClientStack/MXPClientView.cs4
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs4
2 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
index 1f6dc5f..302f7ae 100644
--- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
+++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
@@ -1735,5 +1735,9 @@ namespace OpenSim.Client.MXP.ClientStack
1735 public void StopFlying(ISceneEntity presence) 1735 public void StopFlying(ISceneEntity presence)
1736 { 1736 {
1737 } 1737 }
1738
1739 public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data)
1740 {
1741 }
1738 } 1742 }
1739} 1743}
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index 8a49c62..ba6456b 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -1229,5 +1229,9 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
1229 public void StopFlying(ISceneEntity presence) 1229 public void StopFlying(ISceneEntity presence)
1230 { 1230 {
1231 } 1231 }
1232
1233 public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data)
1234 {
1235 }
1232 } 1236 }
1233} 1237}