[INTERPRETER]

* BUG: Disable the component specific event loop when starting a task. No
  way that any GUI works in a background task now, but I can't disable it
  automatically.


git-svn-id: svn://localhost/gambas/trunk@5107 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2012-08-31 19:56:41 +00:00
parent 1a059ea685
commit 505cd02a5f

View file

@ -74,6 +74,13 @@ static void has_forked(void)
EXEC_debug = FALSE;
EXEC_task = TRUE;
EXEC_Hook.loop = NULL;
EXEC_Hook.wait = NULL;
EXEC_Hook.timer = NULL;
EXEC_Hook.watch = NULL;
EXEC_Hook.post = NULL;
//EXEC_Hook.quit = NULL;
task = _task_list;
while (task)
{