diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-09-24 11:13:30 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-09-24 11:13:30 -0400 |
commit | 3c19eea34b192ac4a4a8bf22506cf29360cc0c2f (patch) | |
tree | 265670b104fb60861b66502585f9725a87ea3357 /gtk/gtknotebook.h | |
parent | b47b1428b817528b30dc6bb84d96ce85681e8aef (diff) | |
download | gtk+-3c19eea34b192ac4a4a8bf22506cf29360cc0c2f.tar.gz |
GtkNotebook: replace group by group_name
Dealing with bare pointers is problematic for language bindings,
using interned strings is much more straightforward and more than
good enough for what is needed here.
http://bugzilla.gnome.org/show_bug.cgi?id=630521
Diffstat (limited to 'gtk/gtknotebook.h')
-rw-r--r-- | gtk/gtknotebook.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtknotebook.h b/gtk/gtknotebook.h index efbb6274db..553a4840d9 100644 --- a/gtk/gtknotebook.h +++ b/gtk/gtknotebook.h @@ -136,9 +136,9 @@ void gtk_notebook_remove_page (GtkNotebook *notebook, * Tabs drag and drop * ***********************************************************/ -void gtk_notebook_set_group (GtkNotebook *notebook, - gpointer group); -gpointer gtk_notebook_get_group (GtkNotebook *notebook); +void gtk_notebook_set_group_name (GtkNotebook *notebook, + const gchar *group_name); +const gchar *gtk_notebook_get_group_name (GtkNotebook *notebook); |