Merge "Fix Ime Rotation" into tizen_2.1
[platform/framework/native/uifw.git] / inc / FUiCtrlGroupedTableView.h
index da896ba..ee7ee73 100644 (file)
@@ -236,7 +236,7 @@ GroupedTableViewSample::CreateGroupItem(int groupIndex, int itemWidth)
 bool
 GroupedTableViewSample::DeleteGroupItem(int groupIndex, TableViewGroupItem* pItem)
 {
-       delete pItem;
+       pItem->Destroy();
 
        return true;
 }
@@ -294,7 +294,7 @@ GroupedTableViewSample::CreateItem(int groupIndex, int itemIndex, int itemWidth)
 bool
 GroupedTableViewSample::DeleteItem(int groupIndex, int itemIndex, Controls::TableViewItem* pItem)
 {
-       delete pItem;
+       pItem->Destroy();
 
        return true;
 }
@@ -816,7 +816,7 @@ public:
        *
        * @since 2.0
        *
-       * @excpetion E_SUCCESS The method is successful.
+       * @exception E_SUCCESS The method is successful.
        * @exception E_INVALID_OPERATION The current state of the instance prohibits the execution of the specified operation @b Since: @b 2.1.
        * @remarks This method clears all the items in the table view and invokes the methods of the item provider again to update the table view. @n
        * This method does not work during the ITableViewItemProvider call-back procedure.