Browse Source

Travis CI: API documentation update at 2015-08-27 03:10:06 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/d8cfd72571802ed0c6bbe1510f86d06ce85aacf1

Message: Fix JSONNumberType enum error.

urho3d-travis-ci 10 years ago
parent
commit
d17dbebcf4
4 changed files with 7 additions and 11 deletions
  1. 2 3
      Docs/AngelScriptAPI.h
  2. 2 4
      Docs/LuaScriptAPI.dox
  3. 2 3
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 3
Docs/AngelScriptAPI.h

@@ -5125,7 +5125,6 @@ bool Save(File) const;
 bool Save(File, const String&) const;
 bool Save(VectorBuffer&) const;
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
-void SetRoot(const JSONValue&);
 
 // Properties:
 /* readonly */
@@ -5158,7 +5157,7 @@ bool GetBool() const;
 double GetDouble() const;
 float GetFloat() const;
 int GetInt() const;
-uint GetUint() const;
+uint GetUInt() const;
 void Insert(uint, const JSONValue&);
 const JSONValue& Get(const String&) const;
 void Pop();
@@ -5183,7 +5182,7 @@ bool isString;
 /* readonly */
 uint size;
 /* readonly */
-JSONValueType type;
+JSONValueType valueType;
 };
 
 class JoystickState

+ 2 - 4
Docs/LuaScriptAPI.dox

@@ -2774,7 +2774,6 @@ Methods:
 - JSONFile() (GC)
 - JSONFile* new()
 - void delete()
-- void SetRoot(const JSONValue& root)
 - const JSONValue& GetRoot() const
 - bool Save(const String fileName, const String indentation = "\t") const
 
@@ -2799,7 +2798,6 @@ Methods:
 - JSONValue(const JSONValue& value) (GC)
 - JSONValue* new(const JSONValue& value)
 - void delete()
-- void SetType(JSONValueType valueType)
 - void SetBool(bool value)
 - void SetInt(int value)
 - void SetUint(unsigned value)
@@ -2808,7 +2806,7 @@ Methods:
 - void SetString(const String value)
 - void SetArray(const JSONArray& value)
 - void SetObject(const JSONObject& value)
-- JSONValueType GetType() const
+- JSONValueType GetValueType() const
 - bool IsNull() const
 - bool IsBool() const
 - bool IsNumber() const
@@ -2817,7 +2815,7 @@ Methods:
 - bool IsObject() const
 - bool GetBool() const
 - int GetInt() const
-- unsigned GetUint() const
+- unsigned GetUInt() const
 - float GetFloat() const
 - double GetDouble() const
 - const String GetString() const

+ 2 - 3
Docs/ScriptAPI.dox

@@ -6778,7 +6778,6 @@ Methods:
 - bool Save(File@, const String&) const
 - bool Save(VectorBuffer&) const
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
-- void SetRoot(const JSONValue&)
 
 Properties:
 
@@ -6806,7 +6805,7 @@ Methods:
 - double GetDouble() const
 - float GetFloat() const
 - int GetInt() const
-- uint GetUint() const
+- uint GetUInt() const
 - void Insert(uint, const JSONValue&)
 - const JSONValue& Get(const String&) const
 - void Pop()
@@ -6824,7 +6823,7 @@ Properties:
 - bool isObject // readonly
 - bool isString // readonly
 - uint size // readonly
-- JSONValueType type // readonly
+- JSONValueType valueType // readonly
 
 <a name="Class_JoystickState"></a>
 

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.143
+0.0.144