summaryrefslogtreecommitdiff
path: root/src/glibext/delayed-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/glibext/delayed-int.h')
-rw-r--r--src/glibext/delayed-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glibext/delayed-int.h b/src/glibext/delayed-int.h
index acef7d7..ecd9b4e 100644
--- a/src/glibext/delayed-int.h
+++ b/src/glibext/delayed-int.h
@@ -43,8 +43,6 @@ struct _GDelayedWork
DL_LIST_ITEM(link); /* Lien vers les maillons */
- run_task_fc run; /* Traitement externalisé */
-
bool completed; /* Fin de la tâche ? */
GMutex mutex; /* Accès à la variable */
GCond cond; /* Attente de changement */
@@ -56,6 +54,8 @@ struct _GDelayedWorkClass
{
GObjectClass parent; /* A laisser en premier */
+ run_task_fc run; /* Traitement externalisé */
+
/* Signaux */
void (* work_completed) (GDelayedWork *);