Do we have any line by line debugger in qt to watch how control works
-
pls help me
-
yes is possible. right click on the source code editor where is the line number and set a BreackPoint starting from where you want to do the debugging. from there play with F10 - step Over, F11 - step Into and Shift F11 - step out
-
when i was trying to do that it is entering into disassembler(QGraphicsSceneMouseEvent::)...
-
depending what are you doing. step in - in entering into that function, step out is getting you out, and step over is going to the next line of coder