Re: [Java-gnome-developer] problems with java-gnome
Brought to you by:
afcowie
From: enrico d. <enr...@nu...> - 2001-12-29 23:53:13
|
On Saturday 29 December 2001 16:54, you wrote: > Which version of the gnome libraries is in your LD_LIBRARY_PATH? > Can you also please send the code that you have in your test leading > up to and including the call to Gnome.init? One final question; does > TestGTK and TestGNOME run on your system? > i have the gnome-libs-1.2.13-16 rpm installed. The code which gives me the error is the TestGNOME.java which is installed in the directory /usr/local/share/java-gnome/test but also this simple code gives the error (First.java): import gnu.gtk.*; import gnu.gnome.*; public class First { public static void main(String[] args) { // Initialization Gnome.init("First", "0.1", args.length, args); GnomeApp app = new GnomeApp("First", "First App"); app.setPolicy(false, true, false); app.setWmclass("First", "FirstApp"); app.show(); Gtk.main(); } } The program TestGTK.java works perfectly! It seems to me that only the calls to gnome libraries cause problems. Thanks a lot for your help! Bye bye Enrico |