forked from AuroraMiddleware/gtk
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:
parent
b0db18f842
commit
64ee947f42
@ -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>
|
||||
|
||||
* tests/testiconview.c: Use icons of varying size.
|
||||
|
@ -116,10 +116,10 @@ struct _GtkNotebookClass
|
||||
GtkWidget *menu_label,
|
||||
gint position);
|
||||
|
||||
GtkNotebook (* create_window) (GtkNotebook *notebook,
|
||||
GtkWidget *page,
|
||||
gint x,
|
||||
gint y);
|
||||
GtkNotebook * (* create_window) (GtkNotebook *notebook,
|
||||
GtkWidget *page,
|
||||
gint x,
|
||||
gint y);
|
||||
|
||||
void (*_gtk_reserved1) (void);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user