diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-01-26 14:33:55 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-01-26 15:04:01 -0500 |
commit | a5217c7c534407edce180389460b5e8708e7fb02 (patch) | |
tree | c4bd0b2e26333766d98e94cb7fac9d3f52f7b363 | |
parent | 0b99f4ee05e7dc48f75d8362f340d8c13b6319ca (diff) |
Revert "edje - edje_cc - fix wrong state lists where default is not the first"
This reverts commit 0cb33a46758bd1f66653e97d7ad027a9529b1279.
broke existing edc syntax. SPANK SPANK SPANK!!
-rw-r--r-- | src/bin/edje/edje_cc_handlers.c | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index dfb8ed48de..aebb9533cf 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c | |||
@@ -6478,37 +6478,12 @@ st_collections_group_parts_part_description_state(void) | |||
6478 | if (ep->other.desc_count) ed = ep->other.desc[ep->other.desc_count - 1]; | 6478 | if (ep->other.desc_count) ed = ep->other.desc[ep->other.desc_count - 1]; |
6479 | 6479 | ||
6480 | s = parse_str(0); | 6480 | s = parse_str(0); |
6481 | if (!strcmp(s, "default")) | 6481 | if (!strcmp (s, "custom")) |
6482 | { | ||
6483 | double v; | ||
6484 | |||
6485 | if (get_arg_count() == 1) v = 0.0; | ||
6486 | else v = parse_float_range(1, 0.0, 1.0); | ||
6487 | if (v == 0.0) | ||
6488 | { | ||
6489 | if (ed != ep->default_desc) | ||
6490 | { | ||
6491 | ERR("parse error %s:%i. description state '%s' %1.2f is not the first state listed", | ||
6492 | file_in, line - 1, s, v); | ||
6493 | exit(-1); | ||
6494 | } | ||
6495 | } | ||
6496 | } | ||
6497 | if (!strcmp(s, "custom")) | ||
6498 | { | 6482 | { |
6499 | ERR("parse error %s:%i. invalid state name: '%s'.", | 6483 | ERR("parse error %s:%i. invalid state name: '%s'.", |
6500 | file_in, line - 1, s); | 6484 | file_in, line - 1, s); |
6501 | exit(-1); | 6485 | exit(-1); |
6502 | } | 6486 | } |
6503 | if (ed == ep->default_desc) | ||
6504 | { | ||
6505 | if (strcmp(s, "default")) | ||
6506 | { | ||
6507 | ERR("parse error %s:%i. first state is not 'default'", | ||
6508 | file_in, line - 1); | ||
6509 | exit(-1); | ||
6510 | } | ||
6511 | } | ||
6512 | 6487 | ||
6513 | free((void *)ed->state.name); | 6488 | free((void *)ed->state.name); |
6514 | ed->state.name = s; | 6489 | ed->state.name = s; |