Merge lp:~boiko/dialer-app/fix_header_update into lp:dialer-app

Proposed by Gustavo Pichorim Boiko
Status: Superseded
Proposed branch: lp:~boiko/dialer-app/fix_header_update
Merge into: lp:dialer-app
Diff against target: 12 lines (+1/-1)
1 file modified
src/qml/dialer-app.qml (+1/-1)
To merge this branch: bzr merge lp:~boiko/dialer-app/fix_header_update
Reviewer Review Type Date Requested Status
Bill Filler (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Review via email: mp+203826@code.launchpad.net

This proposal has been superseded by a proposal from 2014-01-30.

Commit message

Do not pass the phone number as a parameter when pushing the live call view for an outgoing call. The correct value will be taken from the callManager.
This fixes the problem of the header not updating when switching between multiple calls.

Description of the change

Do not pass the phone number as a parameter when pushing the live call view for an outgoing call. The correct value will be taken from the callManager.
This fixes the problem of the header not updating when switching between multiple calls.

To post a comment you must log in.
Revision history for this message
Gustavo Pichorim Boiko (boiko) wrote :

- Are there any related MPs required for this MP to build/function as expected? Please list.
no

- Is your branch in sync with latest trunk (e.g. bzr pull lp:trunk -> no changes)
yes

- Did you perform an exploratory manual test run of your code change and any related functionality on device or emulator?
yes

- Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/dialer-app) on device or emulator?
yes

- If you changed the UI, was the change specified/approved by design?
not applicable - it is just a fix to a buggy behavior

- If you changed the packaging (debian), did you subscribe a core-dev to this MP?
not applicable - no packaging changes

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

reviewr:
Did you perform an exploratory manual test run of the code change and any related functionality on device or emulator?
yes

Did you successfully run all tests found in your component's Test Plan(https://wiki.ubuntu.com/Process/Merges/TestPlan/<package-name>) on device or emulator?
yes

Did CI run pass? If not, please explain why.
not passing, don't know why

Have you checked that submitter has accurately filled out the submitter checklist and has taken no shortcut?
yes

review: Approve
Revision history for this message
Bill Filler (bfiller) wrote :

- Did you perform an exploratory manual test run of the code change and any related functionality on device or emulator?
yes

- Did you successfully run all tests found in your component's Test Plan
(https://wiki.ubuntu.com/Process/Merges/TestPlan/<package-name>) on device or emulator?
yes

- Did CI run pass? If not, please explain why.
yes

- Have you checked that submitter has accurately filled out the submitter checklist and has taken no shortcut?
yes

review: Approve
Revision history for this message
Bill Filler (bfiller) wrote :

CI passed on device not in jenkins, don't understand why

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/qml/dialer-app.qml'
2--- src/qml/dialer-app.qml 2013-10-07 21:48:12 +0000
3+++ src/qml/dialer-app.qml 2014-01-29 19:32:48 +0000
4@@ -72,7 +72,7 @@
5 callVoicemail()
6 }
7 if (pageStack.depth === 1 && !callManager.hasCalls) {
8- pageStack.push(Qt.resolvedUrl("LiveCallPage/LiveCall.qml"), {"number": number})
9+ pageStack.push(Qt.resolvedUrl("LiveCallPage/LiveCall.qml"))
10 }
11 callManager.startCall(number);
12 }

Subscribers

People subscribed via source and target branches