From 7fd984b77a020d379180eaece8b03e27a6fbae0a Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Fri, 10 Jun 2016 10:04:40 +0100 Subject: [PATCH] Fix compile errors with latest elementary from efl --- src/bin/edi_filepanel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/edi_filepanel.c b/src/bin/edi_filepanel.c index ced31ed..4a43797 100644 --- a/src/bin/edi_filepanel.c +++ b/src/bin/edi_filepanel.c @@ -256,7 +256,7 @@ static void _listing_request_cleanup(Listing_Request *lreq) { eina_stringshare_del(lreq->path); - eina_stringshare_del(lreq->selected); + eina_stringshare_del(lreq->selected_path); free(lreq); } @@ -369,9 +369,9 @@ _populate(Evas_Object *obj, lreq->first = EINA_TRUE; if (selected) - lreq->selected = eina_stringshare_add(selected); + lreq->selected_path = eina_stringshare_add(selected); 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 /* TODO: keep track of monitors so they can be cleaned */