summaryrefslogtreecommitdiff
path: root/gtk/gtknotebook.h
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 /gtk/gtknotebook.h
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
Diffstat (limited to 'gtk/gtknotebook.h')
-rw-r--r--gtk/gtknotebook.h8
1 files changed, 4 insertions, 4 deletions
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);
};