aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-07 20:29:09 +0000
committerJustin Clarke Casey2009-01-07 20:29:09 +0000
commit1aa9e6342829201e29290638fbb23baae8702193 (patch)
treef3bfd2b5cc94da63349119c8c9dd90f4a8cf7640 /OpenSim/Region/Environment/Interfaces
parent* minor: Remove mono compiler warnings from WindModule (diff)
downloadopensim-SC_OLD-1aa9e6342829201e29290638fbb23baae8702193.zip
opensim-SC_OLD-1aa9e6342829201e29290638fbb23baae8702193.tar.gz
opensim-SC_OLD-1aa9e6342829201e29290638fbb23baae8702193.tar.bz2
opensim-SC_OLD-1aa9e6342829201e29290638fbb23baae8702193.tar.xz
* Move general alert code to DialogModule.
* Should be a clean build - last failure looked like a mantis hiccup
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IDialogModule.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
index 15f0471..1e5c791 100644
--- a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
@@ -54,6 +54,12 @@ namespace OpenSim.Region.Environment.Interfaces
54 /// <param name="lastName"></param> 54 /// <param name="lastName"></param>
55 /// <param name="message"></param> 55 /// <param name="message"></param>
56 /// <param name="modal"></param> 56 /// <param name="modal"></param>
57 void SendAlertToUser(string firstName, string lastName, string message, bool modal); 57 void SendAlertToUser(string firstName, string lastName, string message, bool modal);
58
59 /// <summary>
60 /// Send an alert messages to all avatars in the scene.
61 /// </summary>
62 /// <param name="message"></param>
63 void SendGeneralAlert(string message);
58 } 64 }
59} 65}