aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/JsonStore
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-02-14 21:03:07 +0000
committerJustin Clark-Casey (justincc)2013-02-14 21:03:07 +0000
commita52dfd43b6c7f5b1893bf027d949c7cc15c233b3 (patch)
tree4129aa601e5bb8a127fd45ea64546b26311f8564 /OpenSim/Region/OptionalModules/Scripting/JsonStore
parentAdd EventManager events triggered when a SOP is added or removed (diff)
downloadopensim-SC_OLD-a52dfd43b6c7f5b1893bf027d949c7cc15c233b3.zip
opensim-SC_OLD-a52dfd43b6c7f5b1893bf027d949c7cc15c233b3.tar.gz
opensim-SC_OLD-a52dfd43b6c7f5b1893bf027d949c7cc15c233b3.tar.bz2
opensim-SC_OLD-a52dfd43b6c7f5b1893bf027d949c7cc15c233b3.tar.xz
Make new JsonStore script constants separated with underscores, to be consistent with existing LSL/OSSL, etc script constants.
Agreed with cmickeyb
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/JsonStore')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs b/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs
index 3955bff..669d752 100644
--- a/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs
@@ -215,19 +215,19 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
215 215
216#endregion 216#endregion
217 217
218#region ScriptConstantInteface 218#region ScriptConstantsInterface
219 219
220 [ScriptConstant] 220 [ScriptConstant]
221 public static readonly int JSONTYPEUNDEF = (int)JsonStoreNodeType.Undefined; 221 public static readonly int JSON_TYPE_UNDEF = (int)JsonStoreNodeType.Undefined;
222 222
223 [ScriptConstant] 223 [ScriptConstant]
224 public static readonly int JSONTYPEOBJECT = (int)JsonStoreNodeType.Object; 224 public static readonly int JSON_TYPE_OBJECT = (int)JsonStoreNodeType.Object;
225 225
226 [ScriptConstant] 226 [ScriptConstant]
227 public static readonly int JSONTYPEARRAY = (int)JsonStoreNodeType.Array; 227 public static readonly int JSON_TYPE_ARRAY = (int)JsonStoreNodeType.Array;
228 228
229 [ScriptConstant] 229 [ScriptConstant]
230 public static readonly int JSONTYPEVALUE = (int)JsonStoreNodeType.Value; 230 public static readonly int JSON_TYPE_VALUE = (int)JsonStoreNodeType.Value;
231 231
232#endregion 232#endregion
233 233