[edje/examples] Fix error on message fields access.

SVN revision: 66440
This commit is contained in:
Gustavo Lima Chaves 2011-12-21 12:18:52 +00:00
parent ec30d20fa0
commit e94227da15
1 changed files with 4 additions and 4 deletions

View File

@ -105,10 +105,10 @@ collections {
if ((type == MSG_INT_SET) && (id == MSG_COLOR)) { if ((type == MSG_INT_SET) && (id == MSG_COLOR)) {
new r, g, b, a; new r, g, b, a;
r = getarg(3); r = getarg(2);
g = getarg(4); g = getarg(3);
b = getarg(5); b = getarg(4);
a = getarg(6); a = getarg(5);
set_color_class("cc", r, g, b, a); set_color_class("cc", r, g, b, a);
} }