Browse Source

Travis CI: API documentation update at 2018-01-24 00:54:43 UTC.
[ci package]

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

Message: For CI - setup the lint stage on the primary CI.

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

+ 7 - 7
Docs/AngelScriptAPI.h

@@ -8355,9 +8355,9 @@ ParticleEffect();
 ParticleEffect(const String&in);
 // Methods:
 void AddColorFrame(ColorFrame);
-void AddColorTime(Color&, float);
+void AddColorTime(const Color&, float);
 void AddTextureFrame(TextureFrame);
-void AddTextureTime(Rect&, float);
+void AddTextureTime(const Rect&, float);
 ParticleEffect Clone(const String& = String ( )) const;
 ColorFrame GetColorFrame(uint) const;
 TextureFrame GetTextureFrame(uint) const;
@@ -15290,8 +15290,8 @@ bool HasSubscribedToEvent(const String&);
 bool Load(File);
 bool Load(VectorBuffer&);
 bool Load(const String&);
-void Patch(XMLElement);
 void Patch(XMLFile);
+void Patch(const XMLElement&);
 bool Save(File) const;
 bool Save(File, const String&) const;
 bool Save(VectorBuffer&) const;
@@ -15328,10 +15328,10 @@ XPathQuery(const String&in, const String&inout arg1 = String ( ));
 // Methods:
 void Bind();
 void Clear();
-XPathResultSet Evaluate(XMLElement);
-bool EvaluateToBool(XMLElement);
-float EvaluateToFloat(XMLElement);
-String EvaluateToString(XMLElement);
+XPathResultSet Evaluate(const XMLElement&);
+bool EvaluateToBool(const XMLElement&);
+float EvaluateToFloat(const XMLElement&);
+String EvaluateToString(const XMLElement&);
 bool SetQuery(const String&, const String& = String ( ), bool = true);
 bool SetVariable(const String&, bool);
 bool SetVariable(const String&, const String&);

+ 3 - 3
Docs/LuaScriptAPI.dox

@@ -278,7 +278,7 @@ Methods:
 - unsigned GetNumAnimationStates() const
 - AnimationState* GetAnimationState(Animation* animation) const
 - AnimationState* GetAnimationState(const String animationName) const
-- AnimationState* GetAnimationState(const StringHash animationNameHash) const
+- AnimationState* GetAnimationState(StringHash animationNameHash) const
 - AnimationState* GetAnimationState(unsigned index) const
 - float GetAnimationLodBias() const
 - bool GetUpdateInvisible() const
@@ -4485,13 +4485,13 @@ Methods:
 - void SetMaxRotationSpeed(float speed)
 - void SetSizeAdd(float sizeAdd)
 - void SetSizeMul(float sizeMul)
-- void AddColorTime(const Color& color, const float time)
+- void AddColorTime(const Color& color, float time)
 - void AddColorFrame(const ColorFrame& colorFrame)
 - void RemoveColorFrame(unsigned index)
 - void SetColorFrame(unsigned index, const ColorFrame& colorFrame)
 - void SetNumColorFrames(unsigned number)
 - void SortColorFrames()
-- void AddTextureTime(const Rect& uv, const float time)
+- void AddTextureTime(const Rect& uv, float time)
 - void AddTextureFrame(const TextureFrame& textureFrame)
 - void RemoveTextureFrame(unsigned index)
 - void SetTextureFrame(unsigned index, const TextureFrame& textureFrame)

+ 7 - 7
Docs/ScriptAPI.dox

@@ -10008,9 +10008,9 @@ Properties:
 Methods:
 
 - void AddColorFrame(ColorFrame@)
-- void AddColorTime(Color&, float)
+- void AddColorTime(const Color&, float)
 - void AddTextureFrame(TextureFrame@)
-- void AddTextureTime(Rect&, float)
+- void AddTextureTime(const Rect&, float)
 - ParticleEffect@ Clone(const String& = String ( )) const
 - ColorFrame@ GetColorFrame(uint) const
 - TextureFrame@ GetTextureFrame(uint) const
@@ -15891,8 +15891,8 @@ Methods:
 - bool Load(File@)
 - bool Load(VectorBuffer&)
 - bool Load(const String&)
-- void Patch(XMLElement)
 - void Patch(XMLFile@)
+- void Patch(const XMLElement&)
 - bool Save(File@) const
 - bool Save(File@, const String&) const
 - bool Save(VectorBuffer&) const
@@ -15920,10 +15920,10 @@ Methods:
 
 - void Bind()
 - void Clear()
-- XPathResultSet Evaluate(XMLElement)
-- bool EvaluateToBool(XMLElement)
-- float EvaluateToFloat(XMLElement)
-- String EvaluateToString(XMLElement)
+- XPathResultSet Evaluate(const XMLElement&)
+- bool EvaluateToBool(const XMLElement&)
+- float EvaluateToFloat(const XMLElement&)
+- String EvaluateToString(const XMLElement&)
 - bool SetQuery(const String&, const String& = String ( ), bool = true)
 - bool SetVariable(const String&, bool)
 - bool SetVariable(const String&, const String&)

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.100
+0.1.101