This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: JavaFX unexpected warning


> It does work, however, I get this unexpected warning:
>    .\test.scm:14:29: warning - no known slot 'setStyle' in java.lang.Object
> 
> Any ideas why?

Kawa cannot be sure that the Button procedure returns an object of
Button type, and so only assumes it is an Object and then wonders
whether that Object will have the required setStyle method.

> > (define button

Changing the above to something like

   (define button ::javafx.scene.control.Button

should fix the problem.

Regards,

-chaw


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]