[Radio] Correcting example program of radio in elementary

Summary: Minor defect in example program fixed.

Test Plan: gcc -g radio_example_01.c -o radio_example_01 `pkg-config --cflags --libs elementary`

Reviewers: seoz, singh.amitesh

Differential Revision: https://phab.enlightenment.org/D363
This commit is contained in:
Chinmaya Panigrahi 2013-12-04 08:21:56 +09:00 committed by Daniel Juyung Seo
parent 9013230dac
commit 0bd965abc8
1 changed files with 3 additions and 0 deletions

View File

@ -64,10 +64,13 @@ elm_main(int argc, char **argv)
radio = elm_radio_add(win);
elm_object_text_set(radio, "Radio 4");
elm_radio_state_value_set(radio, 4);
elm_radio_value_pointer_set(radio, &val);
elm_radio_group_add(radio, group);
elm_box_pack_end(bx, radio);
evas_object_size_hint_weight_set(radio, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(radio, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_show(radio);
evas_object_smart_callback_add(radio, "changed", _cb, NULL);
evas_object_show(win);