Details
Description
- Open Addressbook tutorial, part 5 from the examples shipped with Qt for Symbian
- Set up a Symbian device target
- Add these lines to main function right before line with return:
QString test = "1"; test = "2"; test = "3";
- Set breakpoint on the first of these lines and start debugging on device.
- When breakpoint is hit, test is shown as "<not accessible>". Yes, of course, it's not initialized yet.
- Step over. Value of test ("1") is shown correctly in Locals and Watchers view.
- Step over. test is shown as "<not accessible>" again. Why this?
- Step over. Once again "1" is shown as value for test. Now this is wrong.