Re: [SailfishDevel] Warning when running under debugger

2014-08-25 Thread Goncalo Carvalho
..@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] > on behalf of Goncalo Carvalho [glsl...@gmail.com] > Sent: Saturday, August 23, 2014 6:06 PM > To: Sailfish OS Developers > Subject: Re: [SailfishDevel] Warning when running under debugger > > Hi, > > Yes. But that

Re: [SailfishDevel] Warning when running under debugger

2014-08-24 Thread Matthew Vogt
} Thanks, Matt From: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] on behalf of Goncalo Carvalho [glsl...@gmail.com] Sent: Saturday, August 23, 2014 6:06 PM To: Sailfish OS Developers Subject: Re: [SailfishDevel] Warning when runn

Re: [SailfishDevel] Warning when running under debugger

2014-08-23 Thread Goncalo Carvalho
Hi, Yes. But that's just Page. All children of Page in SecondPage.qml have anchors referencing parent. And it only happens when flicking back to the initial Page (should have mentioned that). So I'm assuming there's some code missing to do this back and forwarding. Actually it doesn't matter if

Re: [SailfishDevel] Warning when running under debugger

2014-08-23 Thread Andrey Kozhevnikov
error inside SecondPage.qml on line 35 23.08.2014 13:52, Goncalo Carvalho пишет: Hi, Long time lurker and a QML newbie. I've been playing with the tutorial and adding this code to FirstPage.qml onStatusChanged: { if (status === PageStatus.Active && pageStack.depth === 1) {

[SailfishDevel] Warning when running under debugger

2014-08-23 Thread Goncalo Carvalho
Hi, Long time lurker and a QML newbie. I've been playing with the tutorial and adding this code to FirstPage.qml onStatusChanged: { if (status === PageStatus.Active && pageStack.depth === 1) { pageStack.pushAttached(Qt.resolvedUrl("SecondPage.qml")) } } lea