QML correction for call duration display
authorBrian Jones <brian.j.jones@intel.com>
Thu, 12 Apr 2012 19:56:32 +0000 (12:56 -0700)
committerBrian Jones <brian.j.jones@intel.com>
Thu, 12 Apr 2012 19:56:32 +0000 (12:56 -0700)
qml/CallItemViewLarge.qml

index db0d879..1ea7dd6 100644 (file)
@@ -61,7 +61,7 @@ Item
     states {
         State {
             name: 'active'           
-           PropertyChanges {target: callDurationInd; text: "00:00:00"}
+           PropertyChanges {target: root; callDuration: "00:00:00"}
             PropertyChanges {target: answerButton; visible: false}
             PropertyChanges {target: hangupButton; visible: true; width: parent.width}
             PropertyChanges {target: stateInd; text: qsTr("Active")}
@@ -91,7 +91,7 @@ Item
 
         State {
             name: 'incoming'            
-           PropertyChanges {target: callDurationInd; text: "00:00:00"}
+           PropertyChanges {target: root; callDuration: "00:00:00"}
             PropertyChanges {target: answerButton; visible: true}
             PropertyChanges {target: hangupButton; visible: true; width: parent.width * 0.45}
             PropertyChanges {target: stateInd; text: qsTr("Incoming...")}