X-Git-Url: https://git.wpitchoune.net/gitweb/?p=ptask.git;a=blobdiff_plain;f=src%2Fui_taskpanel.c;h=91f3c54f5d937351857c3306710c5abc3279b51e;hp=675a0a12714bdd29fa5f9c05791639f6bf802c00;hb=70cd5dc1dcd5c75c98494807f5e4775260212ff6;hpb=11e8b2872e4307031d724034e330ee090e365f17 diff --git a/src/ui_taskpanel.c b/src/ui_taskpanel.c index 675a0a1..91f3c54 100644 --- a/src/ui_taskpanel.c +++ b/src/ui_taskpanel.c @@ -75,7 +75,7 @@ static int tasksave_clicked_cbk(GtkButton *btn, gpointer data) task = current_task; - log_fct(__func__, "%d", task->id); + log_fct("%d", task->id); buf = gtk_text_view_get_buffer(w_note); @@ -123,7 +123,7 @@ static int tasksave_clicked_cbk(GtkButton *btn, gpointer data) void ui_taskpanel_init(GtkBuilder *builder) { - log_fct(__func__, "ENTER"); + log_fct("ENTER"); w_note = GTK_TEXT_VIEW(gtk_builder_get_object(builder, "tasknote")); @@ -150,7 +150,7 @@ void ui_taskpanel_init(GtkBuilder *builder) enable(0); - log_fct(__func__, "EXIT"); + log_fct("EXIT"); } static int priority_to_int(const char *str) @@ -215,7 +215,7 @@ int taskremove_clicked_cbk(GtkButton *btn, gpointer data) log_fct_enter(); if (current_task) { - log_fct(__func__, "uuid=%d", current_task->uuid); + log_fct("uuid=%d", current_task->uuid); tw_task_remove(current_task->uuid); refresh(); }