Proxy: Pass the correct object to opaque check

SVN revision: 56770
This commit is contained in:
Brett Nash 2011-02-06 23:51:23 +00:00
parent d7688c9719
commit 99ab5efc6e
1 changed files with 2 additions and 2 deletions

View File

@ -398,7 +398,7 @@ _proxy_is_opaque(Evas_Object *obj)
/* No source: Sure, it's opaque */
if (!o->source) return 1;
if (obj->cur.usemap) return 0;
return o->source->func->is_opaque(o);
return o->source->func->is_opaque(o->source);
}
static int
@ -409,7 +409,7 @@ _proxy_was_opaque(Evas_Object *obj)
/* No source: Sure, it's opaque */
if (!o->source) return 1;
if (obj->cur.usemap) return 0;
return o->source->func->was_opaque(o);
return o->source->func->was_opaque(o->source);
}
static int