diff options
author | Justin Clark-Casey (justincc) | 2010-08-18 23:15:25 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-08-18 23:15:25 +0100 |
commit | 8c12f22140d2885bb79aa4e201345ae6fd45fec6 (patch) | |
tree | e6d3fd25eafdee7f790f54d092e8494be4715149 /OpenSim/Client | |
parent | Add textures no longer shipped with newer viewers to OpenSim's standard asset... (diff) | |
parent | Prevent a bad cast in llCreateLink(). (diff) | |
download | opensim-SC-8c12f22140d2885bb79aa4e201345ae6fd45fec6.zip opensim-SC-8c12f22140d2885bb79aa4e201345ae6fd45fec6.tar.gz opensim-SC-8c12f22140d2885bb79aa4e201345ae6fd45fec6.tar.bz2 opensim-SC-8c12f22140d2885bb79aa4e201345ae6fd45fec6.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 6 | ||||
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 7 | ||||
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 7 |
3 files changed, 17 insertions, 3 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index 65921a2..b5b2508 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs | |||
@@ -1015,11 +1015,15 @@ namespace OpenSim.Client.MXP.ClientStack | |||
1015 | // Need to translate to MXP somehow | 1015 | // Need to translate to MXP somehow |
1016 | } | 1016 | } |
1017 | 1017 | ||
1018 | public void SendTeleportLocationStart() | 1018 | public void SendTeleportStart(uint flags) |
1019 | { | 1019 | { |
1020 | // Need to translate to MXP somehow | 1020 | // Need to translate to MXP somehow |
1021 | } | 1021 | } |
1022 | 1022 | ||
1023 | public void SendTeleportProgress(uint flags, string message) | ||
1024 | { | ||
1025 | } | ||
1026 | |||
1023 | public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) | 1027 | public void SendMoneyBalance(UUID transaction, bool success, byte[] description, int balance) |
1024 | { | 1028 | { |
1025 | // Need to translate to MXP somehow | 1029 | // Need to translate to MXP somehow |
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index b808e95..c1e281a 100644 --- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs +++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | |||
@@ -573,7 +573,12 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
573 | throw new System.NotImplementedException(); | 573 | throw new System.NotImplementedException(); |
574 | } | 574 | } |
575 | 575 | ||
576 | public void SendTeleportLocationStart() | 576 | public void SendTeleportStart(uint flags) |
577 | { | ||
578 | throw new System.NotImplementedException(); | ||
579 | } | ||
580 | |||
581 | public void SendTeleportProgress(uint flags, string message) | ||
577 | { | 582 | { |
578 | throw new System.NotImplementedException(); | 583 | throw new System.NotImplementedException(); |
579 | } | 584 | } |
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index a6c490b..99a46dc 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | |||
@@ -579,7 +579,12 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
579 | throw new System.NotImplementedException(); | 579 | throw new System.NotImplementedException(); |
580 | } | 580 | } |
581 | 581 | ||
582 | public void SendTeleportLocationStart() | 582 | public void SendTeleportStart(uint flags) |
583 | { | ||
584 | throw new System.NotImplementedException(); | ||
585 | } | ||
586 | |||
587 | public void SendTeleportProgress(uint flags, string message) | ||
583 | { | 588 | { |
584 | throw new System.NotImplementedException(); | 589 | throw new System.NotImplementedException(); |
585 | } | 590 | } |