Browse Source

Just some fix in comments, to parse Atomic.js in jsdoc correctly.

rsredsq 10 years ago
parent
commit
1d6b53a172
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/Atomic/UI/UIScrollContainer.h
  2. 1 1
      Source/Atomic/UI/UIWidget.h

+ 1 - 1
Source/Atomic/UI/UIScrollContainer.h

@@ -38,7 +38,7 @@ public:
     void SetAdaptToContentSize(bool adapt);
     bool GetAdaptToContentSize();
 
-    /// Set to true if the content should adapt to the available size of this container when it's larger than the preferred size. */
+    /// Set to true if the content should adapt to the available size of this container when it's larger than the preferred size.
     void SetAdaptContentSize(bool adapt);
     bool GetAdaptContentSize();
 

+ 1 - 1
Source/Atomic/UI/UIWidget.h

@@ -187,7 +187,7 @@ class UIWidget : public Object, public tb::TBWidgetDelegate
     virtual void AddChild(UIWidget* child);
 
     /// Add the child to this widget. See AddChild for adding a child to the top or bottom.
-    /// This takes a relative Z and insert the child before or after the given reference widget.*/
+    /// This takes a relative Z and insert the child before or after the given reference widget.
     void AddChildRelative(UIWidget* child, UI_WIDGET_Z_REL z, UIWidget* reference);