bugfix: desktop_editor: selecting exe bug fix

Summary:
IFDUP source and destination were passed conversely

fixes T1351

Test Plan: setting -> apps -> personal app launcher -> add -> open desktop editor -> open file selector -> select file -> check the exec field

Reviewers: raster, zmike

Subscribers: cedric, seoz

Maniphest Tasks: T1351

Differential Revision: https://phab.enlightenment.org/D1189
This commit is contained in:
Wonguk Jeong 2014-07-16 10:26:08 -04:00 committed by Mike Blumenkrantz
parent 06ef03f385
commit df60d14793
1 changed files with 1 additions and 1 deletions

View File

@ -1080,7 +1080,7 @@ _e_desktop_edit_cb_exec_select_ok(void *data, E_Dialog *dia)
E_FREE(cfdata->exec);
cfdata->exec = eina_str_escape(file);
E_FREE(cfdata->try_exec);
IFDUP(cfdata->try_exec, cfdata->exec);
IFDUP(cfdata->exec, cfdata->try_exec);
_e_desktop_edit_cb_exec_select_cancel(data, dia);
}