Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
Qt Creator 2.3.0-beta
-
QtSDK:qtsdkinstaller-x32-2011-07-15-Ubuntu8.04.4LTS.run
QtCreator:qtcreator-linux-x86-opensource-2.2.84-201108040109-setup.bin
Built on Aug 4 2011 at 02:09:40
From revision 1958940b02
Ubuntu 10.10
sdktestround17
Description
Reproduction steps:
1. Create a Qt Quick application(symbian component)
2. Set Desktop Qt 4.7.3 for GCC (Qt SDK) Debug mode.
3. add the following code in main.qml
Rectangle
{
id:rect
anchors.left: parent.left
height:100
width: 100
color:"lightgray"
MouseArea
{
anchors.fill: parent
onClicked:
}
}
4. Set breakpoint at line35, See debug.png.
5. Go to the definition of PageStack. Set breakpoint at the begining of
initPage function in PageStack.js.
6. Start debugging and click the lightgray rectangle.
7. When debugger stop at the first breakpoint, press F5.
8. When debugger stop at the second breakpoint, press F10.
9. wait about 5s. Debugger suspend unexpectedly and can not find where
the debugger stop. The file automatically turn back to main.qml.