X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FCallConfCallerListForm.cpp;h=6159b6ee6b9ef293dcbab276234fce45c6ea270f;hb=3db35206997c4801af7a52978464aac9d3646af9;hp=d3ce4ccf36af531879728ca315f40d832444e56b;hpb=320268140563bfc3e4a652ef8da442779d5913c4;p=apps%2Fosp%2FCall.git diff --git a/src/CallConfCallerListForm.cpp b/src/CallConfCallerListForm.cpp index d3ce4cc..6159b6e 100644 --- a/src/CallConfCallerListForm.cpp +++ b/src/CallConfCallerListForm.cpp @@ -19,6 +19,7 @@ * @brief Conference caller list form */ #include +#include "CallApp.h" #include "CallConfCallerListForm.h" #include "CallAppUtility.h" #include "CallPresentationModel.h" @@ -325,7 +326,8 @@ ConfCallerListForm::OnSceneActivatedN(const SceneId& previousSceneId, const Scen } //show active call timer - ShowTimerInfo(IDC_CALL_TIME_LABEL, __pConfCallInfo->GetCallConnectTime()); +// ShowTimerInfo(IDC_CALL_TIME_LABEL, __pConfCallInfo->GetCallConnectTime()); + ShowTimerInfo(IDC_CALL_TIME_LABEL, __pConfCallInfo->GetDurationTime()); //Set the correct bitmap to the "hold" button based on the current state of the call SetHoldButtonStatus(__pConfCallInfo->IsOnHold()); @@ -492,7 +494,9 @@ ConfCallerListForm::ShowTimerInfo(const String& timerLblName, long long startTim { //current system time long long currTime = 0; - SystemTime::GetTicks(currTime); + //SystemTime::GetTicks(currTime); + CallApp* pPhoneApp = static_cast(CallApp::GetInstance()); + currTime = pPhoneApp->GetCallAppTicks(); //Set call duration TimeSpan diffSpan(abs(startTime - currTime));