[edje/examples] Fix error on message fields access.
authorglima <glima@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 21 Dec 2011 12:18:52 +0000 (12:18 +0000)
committerglima <glima@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 21 Dec 2011 12:18:52 +0000 (12:18 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@66440 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/examples/signals-messages.edc

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