elementary/panes - fixed typo

SVN revision: 65471
This commit is contained in:
ChunEon Park 2011-11-21 06:16:42 +00:00
parent 6194ab2345
commit a138bd0a3e
1 changed files with 2 additions and 2 deletions

View File

@ -290,9 +290,9 @@ _content_get_hook(const Evas_Object *obj, const char *part)
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return NULL;
if (part && (!strncmp(part, "elm.swallow.", 12))) part += 12;
if (!part || !strcmp(part, "right"))
if (!part || !strcmp(part, "left"))
return wd->contents.left;
else if (!strcmp(part, "left"))
else if (!strcmp(part, "right"))
return wd->contents.right;
return NULL;
}