GtkNotebook: deprecate some tab-dnd-related functions
gtk_notebook_set_window_creation_hook has been removed in GTK+ 3, deprecate it here. gtk_notebook_get/set_group has been deprecated in favour of the new gtk_notebook_get/set_group_name. http://bugzilla.gnome.org/show_bug.cgi?id=630521
This commit is contained in:
@ -180,20 +180,22 @@ void gtk_notebook_remove_page (GtkNotebook *notebook,
|
||||
* Tabs drag and drop *
|
||||
***********************************************************/
|
||||
|
||||
#ifndef GTK_DISABLE_DEPRECATED
|
||||
void gtk_notebook_set_window_creation_hook (GtkNotebookWindowCreationFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
#ifndef GTK_DISABLE_DEPRECATED
|
||||
void gtk_notebook_set_group_id (GtkNotebook *notebook,
|
||||
gint group_id);
|
||||
gint gtk_notebook_get_group_id (GtkNotebook *notebook);
|
||||
|
||||
#endif /* GTK_DISABLE_DEPRECATED */
|
||||
|
||||
void gtk_notebook_set_group (GtkNotebook *notebook,
|
||||
gpointer group);
|
||||
gpointer gtk_notebook_get_group (GtkNotebook *notebook);
|
||||
#endif /* GTK_DISABLE_DEPRECATED */
|
||||
|
||||
void gtk_notebook_set_group_name (GtkNotebook *notebook,
|
||||
const gchar *group_name);
|
||||
const gchar *gtk_notebook_get_group_name (GtkNotebook *notebook);
|
||||
|
||||
|
||||
/***********************************************************
|
||||
|
Reference in New Issue
Block a user