radiobutton: Fix a warning in a code sample

This commit is contained in:
Timm Bäder 2019-09-28 08:38:41 +02:00
parent 703fda3be8
commit dbabdf8341

View File

@ -392,7 +392,7 @@ gtk_radio_button_set_group (GtkRadioButton *radio_button,
*
* while (some_condition)
* {
* radio_button = gtk_radio_button_new (NULL);
* radio_button = GTK_RADIO_BUTTON (gtk_radio_button_new (NULL));
*
* gtk_radio_button_join_group (radio_button, last_button);
* last_button = radio_button;