Hi, I have a simple question:
After I open QtCreator, the first time I debug my program, every information I want is in "Debug Mode", under "Locals and Watchers" tab. But after that, any other time I debug my code, the information is different.
For example:
(first debug)
Name: Value: Type:
inicial 1 int
Name: Value: Type:
arq "elemento.txt" QFile
inicial 1 int
nome "A" QString
To copy to clipboard, switch view to plain text mode
(same program, second debug)
Name: Value: Type:
inicial 1 int
Name: Value: Type:
arq QFile
inicial 1 int
nome QString
To copy to clipboard, switch view to plain text mode
If I close QtCreator and open it again, everything goes back to normal... for the first time I debug.
Note: it only goes wrong with data from Classes, if its a primitive variable (int, char, long...) everything is ok.
Should I know something I don't? 
Thanks, people!
Bookmarks