diff options
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreScriptModule.cs | 10 |
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 | ||