ui: indent and unnecessary fn call.

This commit is contained in:
Alastair Poole 2020-07-04 19:15:03 +01:00
parent 247494ca25
commit d71b1a2651
2 changed files with 3 additions and 3 deletions

View File

@ -885,9 +885,9 @@ _item_menu_debug_cb(void *data, Evas_Object *obj EINA_UNUSED,
if (ecore_file_app_installed("terminology"))
terminal = "terminology";
ecore_exe_run(eina_slstr_printf("%s -e gdb attach %d", terminal, proc->pid), NULL);
ecore_exe_run(eina_slstr_printf("%s -e gdb attach %d", terminal, proc->pid), NULL);
proc_info_free(proc);
proc_info_free(proc);
}
static void
@ -1218,6 +1218,7 @@ _about_clicked_cb(void *data, Evas_Object *obj EINA_UNUSED,
void *event_info EINA_UNUSED)
{
Ui *ui = data;
evisum_about_window_show(ui);
}

View File

@ -184,7 +184,6 @@ _win_del_cb(void *data, Evas_Object *obj,
Progress *progress;
Ui *ui = data;
evas_object_hide(obj);
ecore_thread_cancel(ui->thread_cpu);
EINA_LIST_FREE(ui->cpu_list, progress)