elementary/panes - should be return the unset objects.

SVN revision: 65470
This commit is contained in:
ChunEon Park 2011-11-21 05:47:49 +00:00
parent 0c63e7b2d4
commit 6194ab2345
1 changed files with 2 additions and 2 deletions

View File

@ -305,9 +305,9 @@ _content_unset_hook(Evas_Object *obj, const char *part)
if (!wd) return NULL;
if (part && (!strncmp(part, "elm.swallow.", 12))) part += 12;
if (!part || !strcmp(part, "right"))
_content_right_unset(obj);
return _content_right_unset(obj);
else if (!strcmp(part, "left"))
_content_left_unset(obj);
return _content_left_unset(obj);
return NULL;
}