Modify doxygen
authorChoongeun Hong <cheun.hong@samsung.com>
Wed, 15 May 2013 07:04:13 +0000 (16:04 +0900)
committerChoongeun Hong <cheun.hong@samsung.com>
Wed, 15 May 2013 07:04:13 +0000 (16:04 +0900)
Change-Id: I961792fb8bb020ea9b33f963b320fed290fe0ef8
Signed-off-by: Choongeun Hong <cheun.hong@samsung.com>
inc/FUiCtrlDatePicker.h
inc/FUiCtrlForm.h
inc/FUiCtrlTableView.h
inc/FUiCtrlTimePicker.h

index 0d9c2f4..7d1aa71 100644 (file)
@@ -105,7 +105,7 @@ DatePickerSample::OnInitializing(void)
        pButton->AddActionEventListener(*this);
 
        // Adds the button to the form
-       AddControl(*pButton);
+       AddControl(pButton);
 
        // Creates an instance of DatePicker
        __pDatePicker = new DatePicker();
index 7cd8e80..9c5d1a9 100644 (file)
@@ -123,8 +123,8 @@ enum FormActionBar
 
        // Gets a pointer of the frame
        Frame *pFrame = UiApp::GetInstance()->GetAppFrame()->GetFrame();
-       pFrame->AddControl(*pForm);
-       pFrame->SetCurrentForm(*pForm);
+       pFrame->AddControl(pForm);
+       pFrame->SetCurrentForm(pForm);
 
        // Implements MyActionEventListener
        IActionEventListener* pListener = new MyActionEventListener();
index 65f96c0..023eec0 100644 (file)
@@ -218,7 +218,7 @@ TableViewSample::CreateItem(int itemIndex, int itemWidth)
        Label* pLabel = new Label();
        pLabel->Construct(Rectangle(0, 0, itemWidth, GetDefaultItemHeight()), text);
 
-       pItem->AddControl(*pLabel);
+       pItem->AddControl(pLabel);
        pItem->SetContextItem(__pContextItem);
 
        return pItem;
index 3add8f0..f0b82e4 100644 (file)
@@ -103,7 +103,7 @@ TimePickerSample::OnInitializing(void)
        pButton->AddActionEventListener(*this);
 
        // Adds a Button to the Form
-       AddControl(*pButton);
+       AddControl(pButton);
 
        // Creates an instance of TimePicker
        __pTimePicker = new TimePicker();