aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-05-31 19:25:01 +0100
committerJustin Clark-Casey (justincc)2011-05-31 19:25:01 +0100
commit8129e64e2acea6509d5c3a80425f6aa68baa037c (patch)
tree99f20a6caa70274060e43894f0e1143c20b66822 /OpenSim/Framework/IClientAPI.cs
parentrevert the patch that accidentally got added in the last commit (diff)
downloadopensim-SC_OLD-8129e64e2acea6509d5c3a80425f6aa68baa037c.zip
opensim-SC_OLD-8129e64e2acea6509d5c3a80425f6aa68baa037c.tar.gz
opensim-SC_OLD-8129e64e2acea6509d5c3a80425f6aa68baa037c.tar.bz2
opensim-SC_OLD-8129e64e2acea6509d5c3a80425f6aa68baa037c.tar.xz
Fill in the new OwnerData field in the LLUDP ScriptDialog message.
If we don't do this then viewer 2.8 crashes. Resolves http://opensimulator.org/mantis/view.php?id=5510
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index f3ac2df..137f432 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1159,7 +1159,19 @@ namespace OpenSim.Framework
1159 void SendAgentAlertMessage(string message, bool modal); 1159 void SendAgentAlertMessage(string message, bool modal);
1160 void SendLoadURL(string objectname, UUID objectID, UUID ownerID, bool groupOwned, string message, string url); 1160 void SendLoadURL(string objectname, UUID objectID, UUID ownerID, bool groupOwned, string message, string url);
1161 1161
1162 void SendDialog(string objectname, UUID objectID, string ownerFirstName, string ownerLastName, string msg, UUID textureID, int ch, 1162 /// <summary>
1163 /// Open a dialog box on the client.
1164 /// </summary>
1165 /// <param name="objectname"></param>
1166 /// <param name="objectID"></param>
1167 /// <param name="ownerID">/param>
1168 /// <param name="ownerFirstName"></param>
1169 /// <param name="ownerLastName"></param>
1170 /// <param name="msg"></param>
1171 /// <param name="textureID"></param>
1172 /// <param name="ch"></param>
1173 /// <param name="buttonlabels"></param>
1174 void SendDialog(string objectname, UUID objectID, UUID ownerID, string ownerFirstName, string ownerLastName, string msg, UUID textureID, int ch,
1163 string[] buttonlabels); 1175 string[] buttonlabels);
1164 1176
1165 bool AddMoney(int debit); 1177 bool AddMoney(int debit);