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
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
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