aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-12 19:48:20 +0100
committerJustin Clark-Casey (justincc)2010-07-12 19:48:20 +0100
commit312eb5e42ee3812f33ced0c2250f908daf23a864 (patch)
treeeeed643f068bd66ed65a678aaa622043580161ec
parentimplement llSetPrimMediaParams() (diff)
downloadopensim-SC_OLD-312eb5e42ee3812f33ced0c2250f908daf23a864.zip
opensim-SC_OLD-312eb5e42ee3812f33ced0c2250f908daf23a864.tar.gz
opensim-SC_OLD-312eb5e42ee3812f33ced0c2250f908daf23a864.tar.bz2
opensim-SC_OLD-312eb5e42ee3812f33ced0c2250f908daf23a864.tar.xz
minor: correct a few method names and change accessability
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 2600790..ff2f6a2 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -7819,10 +7819,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
7819 if (face < 0 || face > m_host.GetNumberOfSides() - 1) 7819 if (face < 0 || face > m_host.GetNumberOfSides() - 1)
7820 return new LSL_List(); 7820 return new LSL_List();
7821 7821
7822 return GetLinkPrimMediaParams(face, rules); 7822 return GetPrimMediaParams(face, rules);
7823 } 7823 }
7824 7824
7825 public LSL_List GetLinkPrimMediaParams(int face, LSL_List rules) 7825 private LSL_List GetPrimMediaParams(int face, LSL_List rules)
7826 { 7826 {
7827 IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); 7827 IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>();
7828 if (null == module) 7828 if (null == module)
@@ -7930,7 +7930,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
7930 return SetPrimMediaParams(face, rules); 7930 return SetPrimMediaParams(face, rules);
7931 } 7931 }
7932 7932
7933 public LSL_Integer SetPrimMediaParams(int face, LSL_List rules) 7933 private LSL_Integer SetPrimMediaParams(int face, LSL_List rules)
7934 { 7934 {
7935 IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); 7935 IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>();
7936 if (null == module) 7936 if (null == module)