summaryrefslogtreecommitdiff
path: root/gtk/gtknotebook.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-09-24 11:13:30 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-09-24 11:13:30 -0400
commit3c19eea34b192ac4a4a8bf22506cf29360cc0c2f (patch)
tree265670b104fb60861b66502585f9725a87ea3357 /gtk/gtknotebook.h
parentb47b1428b817528b30dc6bb84d96ce85681e8aef (diff)
downloadgtk+-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.h6
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);