aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs
diff options
context:
space:
mode:
authorJeff Ames2008-09-23 23:14:00 +0000
committerJeff Ames2008-09-23 23:14:00 +0000
commit3f79e6b3e766aa508858ee3fcec6f9b6403a35fc (patch)
treeb4e753e9f19b7c90cf14aa3593bf788530e8605c /OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs
parentcouple of minor test cleanups to see if this gets us past the bamboo hump (diff)
downloadopensim-SC_OLD-3f79e6b3e766aa508858ee3fcec6f9b6403a35fc.zip
opensim-SC_OLD-3f79e6b3e766aa508858ee3fcec6f9b6403a35fc.tar.gz
opensim-SC_OLD-3f79e6b3e766aa508858ee3fcec6f9b6403a35fc.tar.bz2
opensim-SC_OLD-3f79e6b3e766aa508858ee3fcec6f9b6403a35fc.tar.xz
Update svn properties, formatting cleanup.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs
index 5a98f4d..86d6188 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs
@@ -730,11 +730,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
730 c.Value = c.Value.Insert(dotIndex, "0"); 730 c.Value = c.Value.Insert(dotIndex, "0");
731 c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; 731 c.Value = "new LSL_Types.LSLFloat("+c.Value+")";
732 } 732 }
733 else if("LSL_Types.LSLInteger" == c.Type) 733 else if ("LSL_Types.LSLInteger" == c.Type)
734 { 734 {
735 c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; 735 c.Value = "new LSL_Types.LSLInteger("+c.Value+")";
736 } 736 }
737 else if("LSL_Types.LSLString" == c.Type) 737 else if ("LSL_Types.LSLString" == c.Type)
738 { 738 {
739 c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; 739 c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")";
740 } 740 }