Hi,
Once again I am struggeling with Symbians Descriptors...
char fileName[128] = "somethingsomething";
Next I have then en TEntry object which has a member iName. To this iName I would like to assign my fileName. I tried to do it as follows:
TEntry anEntry;
anEntry.iName.Copy((TText8* )rEntity->fileName);
-
no instance of overloaded function " TBufC::Copy [with S=256]" matches the argument list
argument types are: (TText8 *)
object type is: TBufC<256>
anEntry.iName.Copy((TText8* )rEntity->fileName);
Do I need to use another function to copy the filename into entry.iname?
Many thanks