Re: Autoconnect signal handler form C++ application

1999-12-13 Thread Hilaire Fernandes
James Henstridge writes: > C++ performs symbol mangling, which is why libglade could not find > the symbol. If you look at the object file containing the function > with nm, you should see that the function name there is different. > > To fix the problem, you will have to declare that your

Re: Autoconnect signal handler form C++ application

1999-12-12 Thread James Henstridge
C++ performs symbol mangling, which is why libglade could not find the symbol. If you look at the object file containing the function with nm, you should see that the function name there is different. To fix the problem, you will have to declare that your function should be usable from C. Somet

Autoconnect signal handler form C++ application

1999-12-12 Thread Hilaire Fernandes
It's look like we can't autoconnect signal handler from C++ code. in the following code fragment : /* load the note book toolbar */ xmlWidget = glade_xml_new ("drgeo/icones/drgenius.glade", "drgeoToolBarNoteBook"); glade_xml_signal_autoconnect (xmlWidget); this code fragment is from a clas