Fix problems introduced by doxygen changes 45/59045/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 8 Feb 2016 18:48:45 +0000 (18:48 +0000)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 8 Feb 2016 18:48:45 +0000 (18:48 +0000)
Change-Id: Ibf4f5cad2b4fc0abfbbcd997c5d7abe41b55f6f3

dali/public-api/actors/camera-actor.h
dali/public-api/actors/custom-actor-impl.h
dali/public-api/animation/animation.h
dali/public-api/animation/constraints.h
dali/public-api/animation/path.h
dali/public-api/events/tap-gesture-detector.h

index 81065f7..0c44da0 100644 (file)
@@ -34,7 +34,7 @@ class CameraActor;
 
 /**
  * @brief Camera enumerations.
- * @since_tizen 2.4
+ * @SINCE_1_0.0
  */
 namespace Camera
 {
index 370aaf2..975d4fe 100644 (file)
@@ -157,7 +157,7 @@ public:
    * @brief Called when the owning actor's size is set e.g. using Actor::SetSize().
    *
    * @SINCE_1_0.0
-   * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor::GetSize.
+   * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor::GetTargetSize.
    */
   virtual void OnSizeSet(const Vector3& targetSize) = 0;
 
@@ -166,7 +166,7 @@ public:
    *
    * @SINCE_1_0.0
    * @param[in] animation The object which is animating the owning actor.
-   * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor::GetSize.
+   * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor::GetTargetSize.
    */
   virtual void OnSizeAnimation(Animation& animation, const Vector3& targetSize) = 0;
 
index 1fd9ba9..894398d 100644 (file)
@@ -442,7 +442,7 @@ public:
    * @brief Connect to this signal to be notified when an Animation's animations have finished.
    *
    * @SINCE_1_0.0
-   * @return A signal object to @ref Signal::Connect() with.
+   * @return A signal object to connect with.
    */
   AnimationSignalType& FinishedSignal();
 
index 150d8f6..13c0485 100644 (file)
@@ -167,7 +167,7 @@ struct RelativeToConstraint
    * @brief Functor.
    * @SINCE_1_0.0
    * @param[in,out] current The current property value (vector3 property * scale factor).
-   * @param[in] input Property container for current property calculation
+   * @param[in] inputs Property container for current property calculation
    */
   void operator()( Vector3& current, const PropertyInputContainer& inputs )
   {
@@ -199,7 +199,7 @@ struct RelativeToConstraintFloat
    * @brief Functor.
    * @SINCE_1_0.0
    * @param[in,out] current The current property value (float property * scale factor).
-   * @param[in] input Property container for current property calculation
+   * @param[in] inputs Property container for current property calculation
    */
   void operator()( float& current, const PropertyInputContainer& inputs )
   {
index 7ecd505..1646acb 100644 (file)
@@ -37,7 +37,7 @@ class Path;
 /**
  * @brief A 3D parametric curve
  *
- * Paths can be used to animate position and orientation of actors using @ref Dali::Animate( Actor, Path, ... )
+ * Paths can be used to animate position and orientation of actors using Dali::Animate()
  *
  * @SINCE_1_0.0
  */
index 3f322d1..020558e 100644 (file)
@@ -40,7 +40,8 @@ struct TapGesture;
  * @brief This class emits a signal when a tap gesture occurs that meets the requirements set by the
  * application.
  *
- * See @ref TapGestureDetector::SetTapsRequired
+ * See @ref TapGestureDetector::SetMinimumTapsRequired
+ * See @ref TapGestureDetector::SetMaximumTapsRequired
  *
  * A TapGesture is a discrete gesture, which means it does not have any state information attached
  * to it.  Please see TapGesture for more information.