diff options
author | Melanie Thielker | 2010-06-28 02:30:36 +0200 |
---|---|---|
committer | Melanie | 2010-06-28 03:14:05 +0100 |
commit | 0a82d10fc4827d4c537b5d23f0654d80ba89a2a3 (patch) | |
tree | 1ff2797c50ae0cb3c1feb61c34094a663b0b5488 /OpenSim | |
parent | Remove AgentID and GroupOD from the signature of SOG.Copy(). They were never (diff) | |
download | opensim-SC_OLD-0a82d10fc4827d4c537b5d23f0654d80ba89a2a3.zip opensim-SC_OLD-0a82d10fc4827d4c537b5d23f0654d80ba89a2a3.tar.gz opensim-SC_OLD-0a82d10fc4827d4c537b5d23f0654d80ba89a2a3.tar.bz2 opensim-SC_OLD-0a82d10fc4827d4c537b5d23f0654d80ba89a2a3.tar.xz |
Change the way IRegionModule us referenced by IEmailModule to
allow later conversion to new style
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IEmailModule.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs index 83f004d..c0975ea 100644 --- a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs | |||
@@ -40,7 +40,7 @@ using OpenSim.Region.Framework.Scenes; | |||
40 | 40 | ||
41 | namespace OpenSim.Region.CoreModules.Scripting.EmailModules | 41 | namespace OpenSim.Region.CoreModules.Scripting.EmailModules |
42 | { | 42 | { |
43 | public class EmailModule : IEmailModule | 43 | public class EmailModule : IRegionModule, IEmailModule |
44 | { | 44 | { |
45 | // | 45 | // |
46 | // Log | 46 | // Log |
diff --git a/OpenSim/Region/Framework/Interfaces/IEmailModule.cs b/OpenSim/Region/Framework/Interfaces/IEmailModule.cs index 3a2c423..4f1b91a 100644 --- a/OpenSim/Region/Framework/Interfaces/IEmailModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IEmailModule.cs | |||
@@ -38,7 +38,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
38 | public int numLeft; | 38 | public int numLeft; |
39 | } | 39 | } |
40 | 40 | ||
41 | public interface IEmailModule : IRegionModule | 41 | public interface IEmailModule |
42 | { | 42 | { |
43 | void SendEmail(UUID objectID, string address, string subject, string body); | 43 | void SendEmail(UUID objectID, string address, string subject, string body); |
44 | Email GetNextEmail(UUID objectID, string sender, string subject); | 44 | Email GetNextEmail(UUID objectID, string sender, string subject); |