GNOME Bugzilla – Bug 446513
gtknotebook.h: create_window is wrong declaration
Last modified: 2007-06-11 20:59:11 UTC
Please describe the problem: At revision 18024, 'create_window' was added to GtkNotebookClass. 'create_window' returns pointer. But, it is declared as structure. Steps to reproduce: 1.compile gtknotebook.c Actual results: An error will occur at gtk_notebook_class_init. Expected results: An asterisk should be inserted after 'GtkNotebook'. For example at line 119 in gtknotebook.h, GtkNotebook* (* create_window) (GtkNotebook *notebook, GtkWidget *page, gint x, gint y); Does this happen every time? Revision 18024 or later Other information:
thanks. fixed in trunk. 2007-06-11 Emmanuele Bassi <ebassi@gnome.org> * gtk/gtknotebook.h: Fix declaration of the create_window() vfunc inside GtkNotebookClass. (#446513, Kazuki Iwamoto)