GNOME Bugzilla – Bug 339232
App should have a factory method
Last modified: 2006-05-02 14:53:54 UTC
Using Glade with App doesn't currently work. adding the following snippet will corrent this: public static App getApp(Handle handle) { if (handle == null) return null; App app = (App) getGObjectFromHandle(handle); if (app == null) app = new App(handle); return app; }
Khiraly in #java-gnome mentioned he'd hit this as well. AfC
This fix has been committed into CVS head, closing. Thanks for the report, Sean.