elm widget.c: Refactorying. Use same variable name as others. Easier to read the code.

SVN revision: 64192
This commit is contained in:
Daniel Juyung Seo 2011-10-20 07:31:37 +00:00
parent 6e2e8e44ae
commit 9483f54dd1
1 changed files with 2 additions and 2 deletions

View File

@ -1034,9 +1034,9 @@ elm_widget_resize_object_set(Evas_Object *obj,
} }
// set the resize obj up // set the resize obj up
if (_elm_widget_is(sd->resize_obj)) if (_elm_widget_is(sobj))
{ {
Smart_Data *sd2 = evas_object_smart_data_get(sd->resize_obj); Smart_Data *sd2 = evas_object_smart_data_get(sobj);
if (sd2) if (sd2)
{ {
sd2->parent_obj = obj; sd2->parent_obj = obj;