This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 1f5aa50205d1902182af3559d98d59a957ebc93a
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Jul 7 09:30:38 2025 +0100
tasks - fix typo in func name
---
src/modules/tasks/e_mod_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/modules/tasks/e_mod_main.c b/src/modules/tasks/e_mod_main.c
index 1374daea4..b31c22eb5 100644
--- a/src/modules/tasks/e_mod_main.c
+++ b/src/modules/tasks/e_mod_main.c
@@ -387,7 +387,7 @@ _tasks_cb_iconify_provider(void *data, Evas_Object *obj, const char *signal)
}
static void
-_taks_client_remove(E_Client *ec)
+_tasks_client_remove(E_Client *ec)
{
Tasks *tasks;
Eina_List *l;
@@ -403,7 +403,7 @@ _taks_client_remove(E_Client *ec)
static void
_tasks_cb_client_del(void *data EINA_UNUSED, void *obj)
{
- _taks_client_remove(obj);
+ _tasks_client_remove(obj);
}
static Tasks *
@@ -1215,7 +1215,7 @@ _tasks_cb_event_client_remove(void *data EINA_UNUSED, int type EINA_UNUSED, void
{
E_Event_Client *ev = event;
- _taks_client_remove(ev->ec);
+ _tasks_client_remove(ev->ec);
return EINA_TRUE;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.