Update svn properties, formatting cleanup.

0.6.0-stable
Jeff Ames 2008-09-23 23:14:00 +00:00
parent 1aab81e235
commit 3f79e6b3e7
7 changed files with 22 additions and 22 deletions

View File

@ -612,7 +612,7 @@ namespace OpenSim.Region.Environment.Modules.World.Permissions
// TODO: add group support! // TODO: add group support!
// //
if(part.OwnerID != editorID) if (part.OwnerID != editorID)
return false; return false;
return GenericObjectPermission(editorID, objectID, false); return GenericObjectPermission(editorID, objectID, false);

View File

@ -730,11 +730,11 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
c.Value = c.Value.Insert(dotIndex, "0"); c.Value = c.Value.Insert(dotIndex, "0");
c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; c.Value = "new LSL_Types.LSLFloat("+c.Value+")";
} }
else if("LSL_Types.LSLInteger" == c.Type) else if ("LSL_Types.LSLInteger" == c.Type)
{ {
c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; c.Value = "new LSL_Types.LSLInteger("+c.Value+")";
} }
else if("LSL_Types.LSLString" == c.Type) else if ("LSL_Types.LSLString" == c.Type)
{ {
c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")";
} }

View File

@ -730,11 +730,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
c.Value = c.Value.Insert(dotIndex, "0"); c.Value = c.Value.Insert(dotIndex, "0");
c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; c.Value = "new LSL_Types.LSLFloat("+c.Value+")";
} }
else if("LSL_Types.LSLInteger" == c.Type) else if ("LSL_Types.LSLInteger" == c.Type)
{ {
c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; c.Value = "new LSL_Types.LSLInteger("+c.Value+")";
} }
else if("LSL_Types.LSLString" == c.Type) else if ("LSL_Types.LSLString" == c.Type)
{ {
c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")";
} }