Fix declaration of GtkNotebook::create_window()

GtkNotebook::create_window() was declared as returning a GtkNotebook
instead of a pointer to a GtkNotebook. (#446513, Kazuki Iwamoto)

svn path=/trunk/; revision=18103
This commit is contained in:
Emmanuele Bassi 2007-06-11 20:59:19 +00:00
parent b0db18f842
commit 64ee947f42
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-06-11 Emmanuele Bassi <ebassi@gnome.org>
* gtk/gtknotebook.h: Fix declaration of the create_window()
vfunc inside GtkNotebookClass. (#446513, Kazuki Iwamoto)
2007-06-11 Matthias Clasen <mclasen@redhat.com> 2007-06-11 Matthias Clasen <mclasen@redhat.com>
* tests/testiconview.c: Use icons of varying size. * tests/testiconview.c: Use icons of varying size.

View File

@ -116,10 +116,10 @@ struct _GtkNotebookClass
GtkWidget *menu_label, GtkWidget *menu_label,
gint position); gint position);
GtkNotebook (* create_window) (GtkNotebook *notebook, GtkNotebook * (* create_window) (GtkNotebook *notebook,
GtkWidget *page, GtkWidget *page,
gint x, gint x,
gint y); gint y);
void (*_gtk_reserved1) (void); void (*_gtk_reserved1) (void);
}; };