Modify doxygen
authorChoongeun Hong <cheun.hong@samsung.com>
Thu, 9 May 2013 07:26:38 +0000 (16:26 +0900)
committerChoongeun Hong <cheun.hong@samsung.com>
Thu, 9 May 2013 07:26:38 +0000 (16:26 +0900)
Change-Id: I797c9d1b800dc9e26528e027bb2b74eb211d9d99
Signed-off-by: Choongeun Hong <cheun.hong@samsung.com>
inc/FUiCtrlCheckButton.h
inc/FUiCtrlDateTimePicker.h
inc/FUiCtrlEditDate.h
inc/FUiCtrlEditField.h
inc/FUiCtrlGallery.h
inc/FUiCtrlIconListView.h
inc/FUiCtrlListView.h
inc/FUiCtrlPopup.h
inc/FUiCtrlRadioGroup.h
inc/FUiCtrlTableView.h
inc/FUiCtrlTextBox.h

index 8a21339..a8397cc 100644 (file)
@@ -144,7 +144,7 @@ CheckButtonSample::OnInitializing(void)
        __pCheckButton->AddActionEventListener(*this);
 
        // Add a CheckButton to the Form
-       AddControl(*__pCheckButton);
+       AddControl(__pCheckButton);
 
        return r;
 }
index 758f46b..ce3e9dd 100644 (file)
@@ -104,7 +104,7 @@ DateTimePickerSample::OnInitializing(void)
        pButton->AddActionEventListener(*this);
 
        // Adds the button to the form
-       AddControl(*pButton);
+       AddControl(pButton);
 
        // Creates an instance of DateTimePicker
        __pDateTimePicker = new DateTimePicker();
index dce7ff4..d335d14 100644 (file)
@@ -96,7 +96,7 @@ EditDateSample::OnInitializing(void)
        __pEditDate->AddDateChangeEventListener(*this);
 
        // Adds an instance of IDateChangeEventListener
-       AddControl(*__pEditDate);
+       AddControl(__pEditDate);
 
        return r;
 }
index 1d2a0a4..d1f5abe 100644 (file)
@@ -117,7 +117,7 @@ EditFieldSample::OnInitializing(void)
        __pEditField->AddTextEventListener(*this);
 
        //Adds the edit field to the Form
-       AddControl(*__pEditField);
+       AddControl(__pEditField);
 
        return r;
 }
index 323bc22..995db09 100644 (file)
@@ -116,7 +116,7 @@ GallerySample::OnInitializing(void)
        __pGallery->SetItemProvider(*this);
        __pGallery->AddGalleryEventListener(*this);
 
-       AddControl(*__pGallery);
+       AddControl(__pGallery);
 
        return r;
 }
index 262f349..43eff35 100644 (file)
@@ -120,7 +120,7 @@ IconListViewSample::OnInitializing(void)
        __pIconListView->AddIconListViewItemEventListener(*this);
 
        // Adds the icon list view to the form
-       AddControl(*__pIconListView);
+       AddControl(__pIconListView);
 
        // Gets instances of Bitmap
        AppResource* pAppResource = Application::GetInstance()->GetAppResource();
index 8a7f905..a78be41 100644 (file)
@@ -137,7 +137,7 @@ ListViewSample::OnInitializing(void)
        __pListView->AddListViewItemEventListener(*this);
 
        // Adds the list view to the form
-       AddControl(*__pListView);
+       AddControl(__pListView);
 
        // Creates an instance of ListContextItem
        __pItemContext = new ListContextItem();
index 12593dd..9bdf0f7 100644 (file)
@@ -112,7 +112,7 @@ PopupSample::OnInitializing(void)
        pCloseButton->AddActionEventListener(*this);
 
        // Adds the button to the popup
-       __pPopup->AddControl(*pCloseButton);
+       __pPopup->AddControl(pCloseButton);
 
        // Creates an instance of Button to open the popup.
        Button* pOpenButton = new Button();
@@ -121,7 +121,7 @@ PopupSample::OnInitializing(void)
        pOpenButton->AddActionEventListener(*this);
 
        // Adds the button to the form
-       AddControl(*pOpenButton);
+       AddControl(pOpenButton);
 
        return r;
 }
index ff99609..afb3391 100644 (file)
@@ -108,16 +108,16 @@ RadioGroupSample::OnInitializing(void)
        pCheckButton2->AddActionEventListener(*this);
 
        // Adds check buttons to the form
-       AddControl(*pCheckButton1);
-       AddControl(*pCheckButton2);
+       AddControl(pCheckButton1);
+       AddControl(pCheckButton2);
 
        // Creates an instance of RadioGroup
        __pRadioGroup = new RadioGroup();
        __pRadioGroup->Construct();
 
        // Adds the check buttons to the radio group
-       __pRadioGroup->Add(*pCheckButton1);
-       __pRadioGroup->Add(*pCheckButton2);
+       __pRadioGroup->Add(pCheckButton1);
+       __pRadioGroup->Add(pCheckButton2);
 
        return r;
 }
index 9b103eb..65f96c0 100644 (file)
@@ -115,10 +115,10 @@ TableViewSample::OnInitializing(void)
        __pTableView = new TableView();
        __pTableView->Construct(Rectangle(0, 0, GetClientAreaBounds().width, GetClientAreaBounds().height), true, TABLE_VIEW_SCROLL_BAR_STYLE_FADE_OUT);
        __pTableView->SetItemProvider(*this);
-       __pTableView->AddTableViewItemEventListener(*this);
+       __pTableView->AddTableViewItemEventListener(this);
 
        // Adds the TableView to the form
-       AddControl(*__pTableView);
+       AddControl(__pTableView);
 
        // Creates an instance of TableViewContextItem
        __pContextItem = new TableViewContextItem();
@@ -130,8 +130,8 @@ TableViewSample::OnInitializing(void)
        Button* pButton2 = new Button();
        pButton2->Construct(Rectangle(250, 10, 200, 80), L"Context2");
 
-       __pContextItem->AddControl(*pButton);
-       __pContextItem->AddControl(*pButton2);
+       __pContextItem->AddControl(pButton);
+       __pContextItem->AddControl(pButton2);
 
        return r;
 }
@@ -142,8 +142,8 @@ TableViewSample::OnTerminating(void)
        result r = E_SUCCESS;
 
        // Deallocates the item context
-       delete __pItemContext;
-       __pItemContext = null;
+       delete __pContextItem;
+       __pContextItem = null;
 
        return r;
 }
@@ -216,7 +216,7 @@ TableViewSample::CreateItem(int itemIndex, int itemWidth)
        text.Format(30, L"TableViewItem %d", itemIndex);
 
        Label* pLabel = new Label();
-       pLabel->Construct(Rectangle(0, 0, itemWidth, GetDefaultItemHeight(), text);
+       pLabel->Construct(Rectangle(0, 0, itemWidth, GetDefaultItemHeight()), text);
 
        pItem->AddControl(*pLabel);
        pItem->SetContextItem(__pContextItem);
index 99eaaae..48dbb3a 100644 (file)
@@ -165,7 +165,7 @@ TextBoxSample::OnInitializing(void)
        __pTextBox->AppendText(L"\nTizen SDK");
 
        // Adds the text box to the form
-       AddControl(*__pTextBox);
+       AddControl(__pTextBox);
 
        return r;
 }