Merge lp:~vthompson/sudoku-app/fix-1291603 into lp:sudoku-app

Proposed by Victor Thompson
Status: Merged
Approved by: Alan Pope 🍺🐧🐱 πŸ¦„
Approved revision: 168
Merged at revision: 169
Proposed branch: lp:~vthompson/sudoku-app/fix-1291603
Merge into: lp:sudoku-app
Diff against target: 15 lines (+0/-2)
1 file modified
sudoku-app.qml (+0/-2)
To merge this branch: bzr merge lp:~vthompson/sudoku-app/fix-1291603
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Sudoku Touch developers Pending
Review via email: mp+210730@code.launchpad.net

Commit message

Fix Qt5.2 lvalue error

Description of the change

Fix Qt5.2 lvalue error

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Dinko Osmankovic (dinko-metalac) wrote :

Wow, great. Thanks, though I will have to manually teat resizing operation.
Or to figure out autopilot test for that.

BTW, where did you get qt5.2 ? Is that landed in trusty? I still don't have
it.
On 13 Mar 2014 03:35, "Victor Thompson" <email address hidden> wrote:

> Victor Thompson has proposed merging lp:~vthompson/sudoku-app/fix-1291603
> into lp:sudoku-app.
>
> Commit message:
> Fix Qt5.2 lvalue error
>
> Requested reviews:
> Sudoku Touch developers (sudoku-touch-dev)
> Related bugs:
> Bug #1291603 in Sudoku App: "App fails to start under qt5.2"
> https://bugs.launchpad.net/sudoku-app/+bug/1291603
>
> For more details, see:
> https://code.launchpad.net/~vthompson/sudoku-app/fix-1291603/+merge/210730
>
> Fix Qt5.2 lvalue error
> --
> https://code.launchpad.net/~vthompson/sudoku-app/fix-1291603/+merge/210730
> Your team Sudoku Touch developers is requested to review the proposed
> merge of lp:~vthompson/sudoku-app/fix-1291603 into lp:sudoku-app.
>
> === modified file 'sudoku-app.qml'
> --- sudoku-app.qml 2014-02-18 16:22:41 +0000
> +++ sudoku-app.qml 2014-03-13 02:35:21 +0000
> @@ -581,13 +581,11 @@
> if (!gridLoaded && width/height > mainView.resizeFactor)
> return;
> newSize(mainView.width, mainView.height);
> - sudokuBlocksGrid =
> Qt.createComponent(Qt.resolvedUrl("SudokuBlocksGrid.qml"))
> }
> onWidthChanged: {
> if (!gridLoaded && width/height > mainView.resizeFactor)
> return;
> newSize(mainView.width, mainView.height);
> - sudokuBlocksGrid =
> Qt.createComponent(Qt.resolvedUrl("SudokuBlocksGrid.qml"))
> }
>
>
>
>
>

Revision history for this message
Victor Thompson (vthompson) wrote :

I upgraded by doing the following:

adb shell
apt-add-repository ppa:ci-train-ppa-service/landing-006
apt-get update
apt-get dist-upgrade
# in case of lxc-android-config or other failures:
# dpkg --configure -a
reboot

I got these instructions from another bug report [1] that I was looking at.

[1] https://bugs.launchpad.net/music-app/+bug/1291398

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'sudoku-app.qml'
2--- sudoku-app.qml 2014-02-18 16:22:41 +0000
3+++ sudoku-app.qml 2014-03-13 02:35:21 +0000
4@@ -581,13 +581,11 @@
5 if (!gridLoaded && width/height > mainView.resizeFactor)
6 return;
7 newSize(mainView.width, mainView.height);
8- sudokuBlocksGrid = Qt.createComponent(Qt.resolvedUrl("SudokuBlocksGrid.qml"))
9 }
10 onWidthChanged: {
11 if (!gridLoaded && width/height > mainView.resizeFactor)
12 return;
13 newSize(mainView.width, mainView.height);
14- sudokuBlocksGrid = Qt.createComponent(Qt.resolvedUrl("SudokuBlocksGrid.qml"))
15 }
16
17

Subscribers

People subscribed via source and target branches