fixed wrong indentation display error
authorMinkyoung Kang <mklove.kang@samsung.com>
Fri, 21 Jun 2013 09:03:44 +0000 (18:03 +0900)
committerMinkyoung Kang <mklove.kang@samsung.com>
Fri, 21 Jun 2013 09:03:44 +0000 (18:03 +0900)
Change-Id: I0734b37702359594f3f0446c1506cfdecf569b90

inc/FUiAnimVisualElement.h
inc/FUiContainer.h
inc/FUiControl.h
inc/FUiCtrlHeaderItem.h
inc/FUiCtrlIGroupedTableViewItemProvider.h
inc/FUiCtrlIconList.h
inc/FUiCtrlListView.h
inc/FUiCtrlMessageBox.h
inc/FUiDataBindingContext.h

index e226078..e375000 100644 (file)
@@ -1294,8 +1294,9 @@ public:
         * @exception           E_INVALID_ARG           The input parameter is incorrect.
         * @exception           E_INVALID_OPERATION                     The current state of the instance prohibits the execution of the specified operation. @n
                                                                                                The matrix for this conversion is singular which has zero determinant.
-        * @remarks                     - This instance and @c pOriginVisualElement must share a common ancestor.
-        *                              - The specific error code can be accessed using the GetLastResult() method.
+        * @remarks                     
+        *                              - This instance and @c pOriginVisualElement must share a common ancestor.
+        *                              - The specific error code can be accessed using the GetLastResult() method.
         */
        Tizen::Graphics::FloatPoint3 TransformVectorFromOrigin(const Tizen::Graphics::FloatPoint3& originPoint, const VisualElement* pOriginVisualElement) const;
 
index 648a488..21316d4 100644 (file)
@@ -118,12 +118,12 @@ public:
         * @exception    E_INVALID_ARG
         * @exception    E_SYSTEM        A system error has occurred.
         * @remarks
-        *                              - When a control is added, it is placed at the top of the drawing stack maintained by the container.@n
-        *                This means the control that is added last is drawn last.
-        *              - A control becomes displayable only after it has been added to a displayable container.
-        *                Some methods may not work normally if the methods of the control are called before adding the control to a container. After the control is added to a %Container, the OnInitializing()
-        *                                        method of the control are called before adding the control to a container. After the control is added to a %Container, the
-        *                                        OnInitializing() method of the control is invoked for the initialization of the control such as creating and adding child controls.
+        *                      - When a control is added, it is placed at the top of the drawing stack maintained by the container.@n
+        *                      This means the control that is added last is drawn last.
+        *                      - A control becomes displayable only after it has been added to a displayable container.
+        *                      Some methods may not work normally if the methods of the control are called before adding the control to a container. After the control is added to a %Container, the OnInitializing()
+        *                      method of the control are called before adding the control to a container. After the control is added to a %Container, the
+        *                      OnInitializing() method of the control is invoked for the initialization of the control such as creating and adding child controls.
         * @see                      Tizen::Ui::Control::OnInitializing()
         * @see                      Tizen::Ui::Control::OnTerminating()
         * @code
index 63c5039..23e30ec 100644 (file)
@@ -288,8 +288,8 @@ public:
         * @exception   E_SUCCESS       The method is successful.
         * @exception   E_FAILURE       The method has failed.
         * @remarks
-        *             - This method is called right before the control is removed from the container, or Destroy() method is called.
-        *                     - To cancel the removal or Destroy() operation, return any exception other than @c E_SUCCESS.
+        *                      - This method is called right before the control is removed from the container, or Destroy() method is called.
+        *                      - To cancel the removal or Destroy() operation, return any exception other than @c E_SUCCESS.
         * @see                 OnInitializing()
         */
        virtual result OnTerminating(void);
index 5b691a6..0af62df 100644 (file)
@@ -162,7 +162,7 @@ public:
         *                      - The bitmap specified for the @c HEADER_ITEM_STATUS_NORMAL will be applied for all other statuses unless different bitmaps
         *                      are explicitly set for those by using this method.
         *                      - Note that the specified bitmaps are ignored if the style of the Header control is not ::HEADER_STYLE_TITLE_BUTTON. @n
-        *              Furthermore, the title button does not support @c HEADER_ITEM_STATUS_SELECTED status and the bitmap for the status is also ignored.
+        *                      Furthermore, the title button does not support @c HEADER_ITEM_STATUS_SELECTED status and the bitmap for the status is also ignored.
         */
        result SetIcon(HeaderItemStatus status, const Tizen::Graphics::Bitmap* pIcon);
 
index 93f2446..d867191 100644 (file)
@@ -87,7 +87,7 @@ public:
        *                       allocated on a heap memory.
        *                       - Note that when the group item is not required, the %GroupedTableView control calls IGroupedTableViewItemProvider::DeleteGroupItem() and the
        *                       application deallocates the item.
-        *                      - The returned item should not be a null pointer.
+                             - The returned item should not be a null pointer.
        */
        virtual TableViewGroupItem* CreateGroupItem(int groupIndex, int itemWidth) = 0;
 
index b9569a5..2dde82d 100644 (file)
@@ -391,7 +391,7 @@ public:
         * @exception   E_SYSTEM                A system error has occurred.
         * @remarks
         *                              - The contents of the specified texts and bitmaps are copied and kept by %IconList.
-        *                          Call RefreshItem() to update item images.
+        *                              Call RefreshItem() to update item images.
         *                              - To display text in multi-lines or to denote the end of line, use '\\n'.
         * @endif
         */
index a78be41..fb3bd51 100644 (file)
@@ -694,7 +694,7 @@ public:
         * @exception E_SUCCESS         The method is successful.
         * @exception E_OUT_OF_RANGE    The specified input parameter is invalid.
         * @exception E_SYSTEM          A system error has occurred.
-        * @remarks This method should be called only after list items are created. @n
+        * @remarks     This method should be called only after list items are created. @n
         *                      If this method needs to be called early in the lifecycle of the ListView, then the UpdateList() method
         *                      should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
         */
@@ -714,7 +714,7 @@ public:
         * @exception E_SYSTEM             A system error has occurred.
         * @remarks
         *                      - 3 refresh types are supported:@c  LIST_REFRESH_TYPE_ITEM_ADD, @c LIST_REFRESH_TYPE_ITEM_REMOVE, and @c LIST_REFRESH_TYPE_ITEM_MODIFY. @n
-        *                      @c LIST_REFRESH_TYPE_ITEM_ADD is used when new data is added to the data model. @n
+        *                      @c LIST_REFRESH_TYPE_ITEM_ADD is used when new data is added to the data model. @n
         *                      @c LIST_REFRESH_TYPE_ITEM_REMOVE is used when a data is deleted from the data model. @n
         *                      @c LIST_REFRESH_TYPE_ITEM_MODIFY is used when an existing data has changes and needs to be updated. @n
         *                      Calling this method with @c LIST_REFRESH_TYPE_ITEM_MODIFY invokes the item provider to call DeleteItem() and CreateItem() for the given index in
@@ -767,7 +767,7 @@ This method internally calls Invalidate(), so you do not need to call them to up
         *                      - This method should be called only after list items are created. @n
         *                      If this method needs to be called early in the lifecycle of the ListView, then the UpdateList() method
         *                      should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
-
+        *
         */
        int GetItemIndexFromPosition(int x, int y) const;
 
@@ -831,8 +831,8 @@ This method internally calls Invalidate(), so you do not need to call them to up
         *                                                              there is no item at the specified position.
         * @remarks
         *                      - The specified @c itemIndex is -1 when there is no list item at the specified position.
-        *                      - The specified @c elementId is -1 when there is no element at the specified position.
-        *                      - This method should be called only after list items are created.  @n
+        *                      - The specified @c elementId is -1 when there is no element at the specified position.
+        *                      - This method should be called only after list items are created.  @n
         *                      If this method needs to be called early in the lifecycle of the ListView,
         *                      then the UpdateList() method should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
         */
@@ -854,7 +854,7 @@ This method internally calls Invalidate(), so you do not need to call them to up
         * @remarks
         *                      - The specified @c itemIndex is @c -1 when there is no list item at the specified position.
         *                      - The specified @c elementId is @c -1 when there is no element at the specified position.
-        *                      - This method should be called only after list items are created. @n
+        *                      - This method should be called only after list items are created. @n
         *                      If this method needs to be called early in the lifecycle of the ListView,
         *                      then the UpdateList() method should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
         */
@@ -874,8 +874,8 @@ This method internally calls Invalidate(), so you do not need to call them to up
         *                                                              there is no item at the specified position.
         * @remarks
         *                      - The specified @c itemIndex is -1 when there is no list item at the specified position.
-        *                      -  The specified @c elementId is -1 when there is no element at the specified position.
-        *                      - This method should be called only after list items are created. @n
+        *                      -  The specified @c elementId is -1 when there is no element at the specified position.
+        *                      - This method should be called only after list items are created. @n
         *                      If this method needs to be called early in the lifecycle of the ListView,
         *                      then the UpdateList() method should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
         */
@@ -896,7 +896,7 @@ This method internally calls Invalidate(), so you do not need to call them to up
         * @remarks
         *                      - The specified @c itemIndex is @c -1 when there is no list item at the specified position.
         *                      - The specified @c elementId is @c -1 when there is no element at the specified position.
-        *                      - This method should be called only after list items are created. @n
+        *                      - This method should be called only after list items are created. @n
         *                      If this method needs to be called early in the lifecycle of the ListView,
         *                      then the UpdateList() method should be called explicitly (for example, during Tizen::Ui::Control::OnInitializing()).
         */
index e51440f..9296a3c 100644 (file)
@@ -219,7 +219,7 @@ public:
         *                              - The message box text cannot contain over @c 399 characters.
         *                              - To display the text in multi-lines or to denote the end of line use '\\n'.
         *                              - The default owner will be the current Form (or Frame). It is possible that this control may not be visible
-        *                              due to this ownership relationship. @n In this case, use the SetOwner() method to change the ownership to the top-most window.
+        *                              due to this ownership relationship. @n In this case, use the SetOwner() method to change the ownership to the top-most window.
         * @see                 ShowAndWait()
         */
        result Construct(const Tizen::Base::String& title, const Tizen::Base::String& text, MessageBoxStyle style, unsigned long timeout = 0);
index d16778c..95de061 100644 (file)
@@ -277,8 +277,8 @@ public:
        * @exception    E_SYSTEM                A system error has occurred.
        * @exception    E_INVALID_ARG           The specified @c destType is not of a supported type.
        * @remarks
-       *                                       - If you have set a data binding listener, @n
-                                       this method is returned after that listener is called.
+       *                                       - If you have set a data binding listener, @n
+       *                                       this method is returned after that listener is called.
        *                                       - The behavior of this method is dependent on the system default locale setting.
        * @see    IDataBindingListener
        */
@@ -297,9 +297,9 @@ public:
        * @exception    E_INVALID_OPERATION    The given binding's trigger is not 'explicit' type.
        * @exception    E_INVALID_ARG  The specified @c destType is not supported in binding ID.
        * @remarks
-       *                                       - If you have set a data binding listener, @n
-                                       this method is returned after that listener is called.
-       *                                       - The behavior of this method is dependent on the system default locale setting.
+       *                               - If you have set a data binding listener, @n
+       *                               this method is returned after that listener is called.
+       *                               - The behavior of this method is dependent on the system default locale setting.
        * @see    IDataBindingListener
        */
        result UpdateBinding(const Tizen::Base::String& bindingId, DataBindingDestinationType destType);