Carbide v1.2 has trouble recognizing changes in code
Hi,
I don't know what I am doing wrong.
But I commented out part of my program and built the project again.
The console window in carbide showed that it compiled the code succesfull.
After installing the sisx on my phone (Nokia5500) the program is still executing the removed part of the program.
Apparently Carbide did not notice the changes in the code.
So I tried using "Clean project" and then "Build project" but I got an error message from makesis.
After restarting carbide I could build the project but the program is still executing different code.
I used
[CODE]
text.Format(_LIT("%d %d %d %d %d"), aX, aY, aZ, 0, 0);
iInfoLabel->SetTextL(text);
iInfoLabel->SetExtent(TPoint(10, 10), iInfoLabel->MinimumSize());
drawDereffered();
[/CODE]
where text is a TBuf<50> and aX, aY, aZ are TInt16.
iInfoLabel is showing the correct values for aX, aY, aZ but after that I get some values that I used before.
I don't know what's going on.
Any help on resolving this issue is greatly appreciated.
Thanks
codepatch
Re: Carbide v1.2 has trouble recognizing changes in code
I finally figured out what was wrong:
When debugging the application the wrong sisx file got installed on the phone.
Actually that sisx file was out-of-sync with the source code.
Somehow the debugger should be able to find out about such a problem.