From: Arno P. <ar...@pu...> - 2010-09-15 07:47:47
|
one new feature of the C backend is that it can automatically generate C wrappers from the Cocoa Java classes in org.xmlvm.iphone.*. What basically happens is that everything that is publicly visible from those classes is used to generate the C wrappers (for the Objective-C backend all of this had to be written manually from scratch). You placed UIGenericToolbar in the org.xmlvm.iphone.internal package, but used it at the same time as a base class for official Cocoa classes. This makes UIGenericToolbar publicly visible and therefore I had to move it out of the internal package. I consider this only a quick fix. UIGenericToolbar is not an official Cocoa class and should not be used as a base class. Once this is fixed, this class should of course be moved back to the internal package. Arno On 9/14/10 1:04 PM, Panayotis Katsaloulis wrote: > Well, every time I find something that I don't really like, I will post here :) > This time is with UIGenericToolbar > This was a helper object, to make programming of the emulator a bit easier. > I saw that you have removed it from the location "internal" and put it in the generic package. > This is wrong. Why was this change? > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |