summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@src.gnome.org>2007-06-11 20:59:19 +0000
committerEmmanuele Bassi <ebassi@src.gnome.org>2007-06-11 20:59:19 +0000
commit64ee947f42cbf4c38b729c6d04f4e700d60d0f47 (patch)
treec8523b23085fc9f00eb6d1b798f0857dea13e215
parentb0db18f842220bcfbc678c2b0d6896a1d2e3c4ff (diff)
downloadgtk+-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--ChangeLog5
-rw-r--r--gtk/gtknotebook.h8
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 <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);
};