2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-main.c (emit_event): Fix the last commit
	which inverted a condition.
This commit is contained in:
Emmanuele Bassi 2008-02-25 16:50:50 +00:00
parent bcd9a6dcec
commit b5bcee6c6c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-main.c (emit_event): Fix the last commit
which inverted a condition.
2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.c: Remove the usage of g_return_if_fail()

View File

@ -1189,7 +1189,7 @@ emit_event (ClutterEvent *event,
}
/* reentrancy check */
if (lock == FALSE)
if (lock != FALSE)
return;
lock = TRUE;