edje: rename variable
authorSebastian Dransfeld <sd@tango.flipp.net>
Mon, 11 May 2015 10:21:54 +0000 (12:21 +0200)
committerSebastian Dransfeld <sd@tango.flipp.net>
Mon, 11 May 2015 11:34:10 +0000 (13:34 +0200)
Give variable a name which better describes its purpose.

src/lib/edje/edje_calc.c

index 58f7633..31cfbd0 100644 (file)
@@ -566,7 +566,7 @@ _edje_part_description_apply(Edje *ed, Edje_Real_Part *ep, const char *d1, doubl
 {
    Edje_Part_Description_Common *epd1;
    Edje_Part_Description_Common *epd2 = NULL;
-   Edje_Part_Description_Common *chosen_desc;
+   Edje_Part_Description_Common *last_desc;
    Eina_Bool change_w, change_h;
    Edje_Part_Description_Image *epdi;
 
@@ -624,13 +624,13 @@ _edje_part_description_apply(Edje *ed, Edje_Real_Part *ep, const char *d1, doubl
           ep->param2 = NULL;
        }
 
-   chosen_desc = ep->chosen_description;
+   last_desc = ep->chosen_description;
    ep->param1.description = epd1;
    ep->chosen_description = epd1;
-   if (chosen_desc)
+   if (last_desc)
      {
-        change_w = ep->chosen_description->fixed.w != chosen_desc->fixed.w;
-        change_h = ep->chosen_description->fixed.h != chosen_desc->fixed.h;
+        change_w = ep->chosen_description->fixed.w != last_desc->fixed.w;
+        change_h = ep->chosen_description->fixed.h != last_desc->fixed.h;
      }
    _edje_real_part_rel_to_apply(ed, ep, &ep->param1);
 
@@ -644,18 +644,18 @@ _edje_part_description_apply(Edje *ed, Edje_Real_Part *ep, const char *d1, doubl
           ep->chosen_description = epd2;
      }
 
-   if (chosen_desc != ep->chosen_description)
+   if (last_desc != ep->chosen_description)
      {
         if (ep->part->type == EDJE_PART_TYPE_EXTERNAL)
-          _edje_external_recalc_apply(ed, ep, NULL, chosen_desc);
-        else if ((chosen_desc) && (ep->part->type == EDJE_PART_TYPE_GROUP))
+          _edje_external_recalc_apply(ed, ep, NULL, last_desc);
+        else if ((last_desc) && (ep->part->type == EDJE_PART_TYPE_GROUP))
           {
              Edje_Size *min, *max, *pmin, *pmax;
 
              min = &ep->chosen_description->min;
              max = &ep->chosen_description->max;
-             pmin = &chosen_desc->min;
-             pmax = &chosen_desc->max;
+             pmin = &last_desc->min;
+             pmax = &last_desc->max;
              if (change_w || change_h ||
                 (((pmin->w == pmax->w) && (pmin->h == pmax->h) && (pmin->w > 0) && (pmin->h > 0)) &&
                 (((min->w != max->w) || (min->h != max->h) || (min->w <= 0) || (min->h <= 0)))))