Modify doxygen submit/tizen_2.1/20130516.045712
authorChoongeun Hong <cheun.hong@samsung.com>
Wed, 15 May 2013 06:43:21 +0000 (15:43 +0900)
committerChoongeun Hong <cheun.hong@samsung.com>
Wed, 15 May 2013 06:43:21 +0000 (15:43 +0900)
Change-Id: I6a4f288116e0bdcfcd0e22c078242d46c224691a
Signed-off-by: Choongeun Hong <cheun.hong@samsung.com>
inc/FShellAppWidgetProvider.h
inc/FShellQuickPanelFrame.h

index c401fd1..549fa87 100644 (file)
@@ -87,7 +87,7 @@ protected:
         *
         *   Rectangle bounds = GetBounds();
         *   __pLabel->Construct(bounds, L"TIZEN");
-        *   AddControl(*__pLabel);
+        *   AddControl(__pLabel);
         *   this->SetAppWidgetFrame(pFrame);
         *   pFrame->Show();
         *
index 27976f6..43f2810 100644 (file)
@@ -95,7 +95,7 @@ QuickPanelFrameSample::OnInitializing(void)
        pButton->Construct(Rectangle(10,10,200,80), L"Button");
 
        // Adds the button to the QuickPanelFrame
-       __pQuickPanelFrame->AddControl(*pButton);
+       __pQuickPanelFrame->AddControl(pButton);
        __pQuickPanelFrame->Show();
 
        return r;