diff options
author | MW | 2008-03-28 15:32:46 +0000 |
---|---|---|
committer | MW | 2008-03-28 15:32:46 +0000 |
commit | a13d68d98c6a5d73134adc6a8d806c7933517eb8 (patch) | |
tree | 5e790a86058b581caf6ade2b9d35de18f5f4bbbd | |
parent | * Introduced base abstract provider class for GridData (diff) | |
download | opensim-SC_OLD-a13d68d98c6a5d73134adc6a8d806c7933517eb8.zip opensim-SC_OLD-a13d68d98c6a5d73134adc6a8d806c7933517eb8.tar.gz opensim-SC_OLD-a13d68d98c6a5d73134adc6a8d806c7933517eb8.tar.bz2 opensim-SC_OLD-a13d68d98c6a5d73134adc6a8d806c7933517eb8.tar.xz |
fixes mantis #778 and shoots himself for making such a mistake to begin with, but also blames Tedd for the way the script functions have wrapper methods that call the same named method in a different class, is it my fault if in two such functions, I forget to add "m_LSL_Functions." and instead cause a recursive loop until the stack overflows.
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index c6b15d5..9cb1d12 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -1939,12 +1939,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1939 | 1939 | ||
1940 | public string osDrawRectangle(string drawList, int width, int height) | 1940 | public string osDrawRectangle(string drawList, int width, int height) |
1941 | { | 1941 | { |
1942 | return osDrawRectangle(drawList, width, height); | 1942 | return m_LSL_Functions.osDrawRectangle(drawList, width, height); |
1943 | } | 1943 | } |
1944 | 1944 | ||
1945 | public string osDrawFilledRectangle(string drawList, int width, int height) | 1945 | public string osDrawFilledRectangle(string drawList, int width, int height) |
1946 | { | 1946 | { |
1947 | return osDrawFilledRectangle(drawList, width, height); | 1947 | return m_LSL_Functions.osDrawFilledRectangle(drawList, width, height); |
1948 | } | 1948 | } |
1949 | 1949 | ||
1950 | public string osSetFontSize(string drawList, int fontSize) | 1950 | public string osSetFontSize(string drawList, int fontSize) |