Revert "edje - edje_cc - fix wrong state lists where default is not the first"
authorMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 26 Jan 2015 19:33:55 +0000 (14:33 -0500)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 26 Jan 2015 20:04:01 +0000 (15:04 -0500)
This reverts commit 0cb33a46758bd1f66653e97d7ad027a9529b1279.

broke existing edc syntax. SPANK SPANK SPANK!!

src/bin/edje/edje_cc_handlers.c

index dfb8ed4..aebb953 100644 (file)
@@ -6478,37 +6478,12 @@ st_collections_group_parts_part_description_state(void)
    if (ep->other.desc_count) ed = ep->other.desc[ep->other.desc_count - 1];
 
    s = parse_str(0);
-   if (!strcmp(s, "default"))
-     {
-        double v;
-
-        if (get_arg_count() == 1) v = 0.0;
-        else v = parse_float_range(1, 0.0, 1.0);
-        if (v == 0.0)
-          {
-             if (ed != ep->default_desc)
-               {
-                  ERR("parse error %s:%i. description state '%s' %1.2f is not the first state listed",
-                      file_in, line - 1, s, v);
-                  exit(-1);
-               }
-          }
-     }
-   if (!strcmp(s, "custom"))
+   if (!strcmp (s, "custom"))
      {
         ERR("parse error %s:%i. invalid state name: '%s'.",
             file_in, line - 1, s);
         exit(-1);
      }
-   if (ed == ep->default_desc)
-     {
-        if (strcmp(s, "default"))
-          {
-             ERR("parse error %s:%i.  first state is not 'default'",
-                 file_in, line - 1);
-             exit(-1);
-          }
-     }
 
    free((void *)ed->state.name);
    ed->state.name = s;