yishayw opened a new issue #126: Bad implicit casting to Function URL: https://github.com/apache/royale-compiler/issues/126 This - text = fdgc.labelFunction(fdgc.dataColumn).toString(); causes fdgc.dataColumn to be implicitly cast to Function, which of course fails. This alternative syntax + var labelFunction:Function = fdgc.labelFunction; + text = labelFunction(fdgc.dataColumn).toString(); fixes it.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
