Removed Depricated APIs
authorAmith Kumar Mahale <amith.m@samsung.com>
Fri, 21 Jun 2013 12:32:04 +0000 (18:02 +0530)
committerAmith Kumar Mahale <amith.m@samsung.com>
Fri, 21 Jun 2013 12:32:04 +0000 (18:02 +0530)
Change-Id: I6b56a7aaf298909e2c40a7b612f88058684ddebb
Signed-off-by: Amith Kumar Mahale <amith.m@samsung.com>
src/CallButtonsPanel.cpp
src/CallConfCallerListForm.cpp
src/CallEndCallForm.cpp
src/CallIncomingCallForm.cpp

index 4b7c57b..83f53cd 100644 (file)
@@ -637,7 +637,7 @@ CallButtonsPanel::SetEndCallPanelState(bool isEnabled)
 
        //Video Call
        pButton = static_cast<Button*>(GetControl(IDC_VIDEOCALL_BUTTON));
-       pButton->SetEnabled(isEnabled);
+       pButton->SetEnabled(false);
 
        //Message
        pButton = static_cast<Button*>(GetControl(IDC_MSG_BUTTON));
index d047ea8..2ae1ee2 100644 (file)
@@ -133,7 +133,6 @@ ConfCallerListForm::OnInitializing(void)
        if(pFooter != null)
        {
                SetFormBackEventListener(this);
-               pFooter->SetBackButton();
        }
        Label* pTimerLbl = static_cast<Label*>(GetControl(IDC_CALL_TIME_LABEL));
        SetControlAlwaysOnTop(*pTimerLbl,true);
index 61a0170..aa10071 100644 (file)
@@ -749,7 +749,7 @@ EndCallForm::OnForeground(void)
        }
        //Enable all buttons
        Button* pButton = static_cast<Button*>(GetControl(IDC_VIDEOCALL_BUTTON,true));
-       pButton->SetEnabled(true);
+       pButton->SetEnabled(false);
        pButton->Invalidate(true);
        pButton = static_cast<Button*>(GetControl(IDC_VOICECALL_BUTTON,true));
        pButton->SetEnabled(true);
index 1ef93fa..89f486c 100644 (file)
@@ -391,7 +391,6 @@ IncomingCallForm::InitializeFooter(void)
                footerItemCreate.Construct(IDA_CREATE_REJECT_CALL_MESSAGE);
                footerItemCreate.SetText(AppUtility::GetResourceString(IDS_REJECT_MESSAGE_CREATE));
                pFooter->AddItem(footerItemCreate);
-               pFooter->SetBackButton();
                pFooter->SetShowState(false);
        }
 }