From 64ee947f42cbf4c38b729c6d04f4e700d60d0f47 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 11 Jun 2007 20:59:19 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ gtk/gtknotebook.h | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a5fa82e9e1..0c341bbbac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-11 Emmanuele Bassi + + * gtk/gtknotebook.h: Fix declaration of the create_window() + vfunc inside GtkNotebookClass. (#446513, Kazuki Iwamoto) + 2007-06-11 Matthias Clasen * 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); };