Fix compile errors with latest elementary from efl

This commit is contained in:
Andy Williams 2016-06-10 10:04:40 +01:00
parent 2262d7bf1c
commit 7fd984b77a
1 changed files with 3 additions and 3 deletions

View File

@ -256,7 +256,7 @@ static void
_listing_request_cleanup(Listing_Request *lreq) _listing_request_cleanup(Listing_Request *lreq)
{ {
eina_stringshare_del(lreq->path); eina_stringshare_del(lreq->path);
eina_stringshare_del(lreq->selected); eina_stringshare_del(lreq->selected_path);
free(lreq); free(lreq);
} }
@ -369,9 +369,9 @@ _populate(Evas_Object *obj,
lreq->first = EINA_TRUE; lreq->first = EINA_TRUE;
if (selected) if (selected)
lreq->selected = eina_stringshare_add(selected); lreq->selected_path = eina_stringshare_add(selected);
else else
lreq->selected = NULL; lreq->selected_path = NULL;
// FIXME re-enable the monitors once we have a less intrusive manner of refreshing the file tree // FIXME re-enable the monitors once we have a less intrusive manner of refreshing the file tree
/* TODO: keep track of monitors so they can be cleaned */ /* TODO: keep track of monitors so they can be cleaned */