ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=7fd984b77a020d379180eaece8b03e27a6fbae0a

commit 7fd984b77a020d379180eaece8b03e27a6fbae0a
Author: Andy Williams <a...@andywilliams.me>
Date:   Fri Jun 10 10:04:40 2016 +0100

    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 */

-- 


Reply via email to