beginner question about extern

2007-06-17 Thread beginner.c
Hi, I'm having a problem with multiple files and using extern In main.c I'm declaring GtkWidget *a; (...do a bunch of stuff successfully to a) In another file: extern GtkWidget *a; (..do a bunch of stuff with error) gtk_toggle_button_set_active: assertion failed ...blah blah failed. I'm am

Re: GtkBuilder Public API - Last call

2007-06-17 Thread Torsten Schoenfeld
On Tue, 2007-06-12 at 18:26 -0300, Johan Dahlin wrote: gtkbuildable.h == GtkBuildable is an interface which is implementable to allow a GObject subclass to customize the behavior of how it is going to be built. Some of the GtkBuildable methods have very generic names which can

Re: GTK+ 2.11.3 released

2007-06-17 Thread Loïc Minier
Hmm, the *.png files for the documentation do not get installed anymore for me; is this a problem of another app on my system or do other people get this problem too? There were some documentation updates, but I didn't spot any suspicious change in the doc build files. -- Loïc Minier

Re: GTK+ 2.11.3 released

2007-06-17 Thread younker
Hi, In the new header file of gtkbuilder, it use typename as parameter's name, typename is a keyword of C++, so when compile C++ application such as gtkmm, thunderbird, it will cause compile error, so it is better to change it to another name like gtypename. Regards. younker

Re: GTK+ 2.11.3 released

2007-06-17 Thread Matthias Clasen
On 6/17/07, younker [EMAIL PROTECTED] wrote: Hi, In the new header file of gtkbuilder, it use typename as parameter's name, typename is a keyword of C++, so when compile C++ application such as gtkmm, thunderbird, it will cause compile error, so it is better to change it to another name like