diff options
author | Emmanuele Bassi <ebassi@src.gnome.org> | 2007-06-11 20:59:19 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@src.gnome.org> | 2007-06-11 20:59:19 +0000 |
commit | 64ee947f42cbf4c38b729c6d04f4e700d60d0f47 (patch) | |
tree | c8523b23085fc9f00eb6d1b798f0857dea13e215 | |
parent | b0db18f842220bcfbc678c2b0d6896a1d2e3c4ff (diff) | |
download | gtk+-64ee947f42cbf4c38b729c6d04f4e700d60d0f47.tar.gz |
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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtknotebook.h | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -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. diff --git a/gtk/gtknotebook.h b/gtk/gtknotebook.h index 24109688e7..887704a221 100644 --- a/gtk/gtknotebook.h +++ b/gtk/gtknotebook.h @@ -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); }; |