diff options
author | Charles Krinke | 2009-05-13 01:13:59 +0000 |
---|---|---|
committer | Charles Krinke | 2009-05-13 01:13:59 +0000 |
commit | 2776afd83d1ab5d5a9713e0894abc9d001a389dc (patch) | |
tree | 731285e40acebeff52853314243b1982bccdf30d /OpenSim | |
parent | Add interface, stubbed implementation and (diff) | |
download | opensim-SC_OLD-2776afd83d1ab5d5a9713e0894abc9d001a389dc.zip opensim-SC_OLD-2776afd83d1ab5d5a9713e0894abc9d001a389dc.tar.gz opensim-SC_OLD-2776afd83d1ab5d5a9713e0894abc9d001a389dc.tar.bz2 opensim-SC_OLD-2776afd83d1ab5d5a9713e0894abc9d001a389dc.tar.xz |
Remove incorrect semicolon
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 8 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 2e93508..f0e585a 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2697,6 +2697,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2697 | } | 2697 | } |
2698 | } | 2698 | } |
2699 | 2699 | ||
2700 | public void llReleaseURL(string url) | ||
2701 | { | ||
2702 | m_host.AddScriptLPS(1); | ||
2703 | NotImplemented("llReleaseURL"); | ||
2704 | } | ||
2705 | |||
2700 | public void llAttachToAvatar(int attachment) | 2706 | public void llAttachToAvatar(int attachment) |
2701 | { | 2707 | { |
2702 | m_host.AddScriptLPS(1); | 2708 | m_host.AddScriptLPS(1); |
@@ -7953,7 +7959,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7953 | // wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg); | 7959 | // wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg); |
7954 | } | 7960 | } |
7955 | 7961 | ||
7956 | public LSL_String llRequestSecureURL(); | 7962 | public LSL_String llRequestSecureURL() |
7957 | { | 7963 | { |
7958 | m_host.AddScriptLPS(1); | 7964 | m_host.AddScriptLPS(1); |
7959 | NotImplemented("llRequestSecureURL"); | 7965 | NotImplemented("llRequestSecureURL"); |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs index 3ec9b3f..9c24750 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs | |||
@@ -262,6 +262,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
262 | void llRegionSay(int channelID, string text); | 262 | void llRegionSay(int channelID, string text); |
263 | void llReleaseCamera(string avatar); | 263 | void llReleaseCamera(string avatar); |
264 | void llReleaseControls(); | 264 | void llReleaseControls(); |
265 | void llReleaseURL(string url); | ||
265 | void llRemoteDataReply(string channel, string message_id, string sdata, int idata); | 266 | void llRemoteDataReply(string channel, string message_id, string sdata, int idata); |
266 | void llRemoteDataSetRegion(); | 267 | void llRemoteDataSetRegion(); |
267 | void llRemoteLoadScript(string target, string name, int running, int start_param); | 268 | void llRemoteLoadScript(string target, string name, int running, int start_param); |