--- "Nancy Kho" wrote:
lst = FrmGetObjectPtr(frm, itemIndex);
--- end of quote ---
If you are using C++, you have cast the return vaule of this function to be a
ListPtr yourself (C allows implicit casts, C++ doesn't).
lst = (ListPtr)FrmGetObjectPtr(frm, itemIndex);
will fix the problem. Same thing for all the others.
Steve Cochran
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/
- I'm trying to compile in Codewarrior. Nancy Kho
- RE: I'm trying to compile in Codewarrior. jacky Cheung
- RE: I'm trying to compile in Codewarrior. Richard Burmeister
- Stephen A. Cochran
