diff options
author | Andrii Kroitor <an.kroitor@samsung.com> | 2015-02-24 11:53:06 +0100 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-02-24 13:46:45 +0100 |
commit | c198746b2d8315adb34e7aa5d7b127373c98d1cb (patch) | |
tree | 94809ade0b309f6645dddb1321c5ca9bc565f11f /src/bin/edje | |
parent | 3c925a1ea689d54e7ab0fa1e1aa03c6ae181d733 (diff) |
edje: fix windows build
Summary:
"far" and "near" are keywords on windows and can't be used as names of variables.
@fix
Reviewers: cedric, Hermet, raster, perepelits.m
Subscribers: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D2037
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'src/bin/edje')
-rw-r--r-- | src/bin/edje/edje_cc_handlers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 27cfeb9568..138e248fed 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c | |||
@@ -9188,8 +9188,8 @@ st_collections_group_parts_part_description_camera_properties(void) | |||
9188 | 9188 | ||
9189 | ed->camera.camera.fovy = FROM_DOUBLE(parse_float(0)); | 9189 | ed->camera.camera.fovy = FROM_DOUBLE(parse_float(0)); |
9190 | ed->camera.camera.aspect = FROM_DOUBLE(parse_float(1)); | 9190 | ed->camera.camera.aspect = FROM_DOUBLE(parse_float(1)); |
9191 | ed->camera.camera.near = FROM_DOUBLE(parse_float(2)); | 9191 | ed->camera.camera.frustum_near = FROM_DOUBLE(parse_float(2)); |
9192 | ed->camera.camera.far = FROM_DOUBLE(parse_float(3)); | 9192 | ed->camera.camera.frustum_far = FROM_DOUBLE(parse_float(3)); |
9193 | } | 9193 | } |
9194 | 9194 | ||
9195 | /** | 9195 | /** |