docs: gtknotebook.c: Use accessor functions to access GtkSelectionData

This commit is contained in:
Javier Jardón 2010-12-16 00:16:00 +00:00
parent cf9e9ff47f
commit e9a77a1535

View File

@ -8116,8 +8116,8 @@ gtk_notebook_get_tab_detachable (GtkNotebook *notebook,
* GtkWidget **child;
*
* notebook = gtk_drag_get_source_widget (context);
* child = (void*) selection_data->data;
*
* child = (void*) gtk_selection_data_get_data (selection_data);
*
* process_widget (*child);
* gtk_container_remove (GTK_CONTAINER (notebook), *child);
* }