Remove the unused ClutterEventFlags enum and the flags member of

the ClutterEvent structure. ClutterEvent objects are not added until
translated so they do not need a 'pending' state.
This commit is contained in:
Emmanuele Bassi
2007-03-25 11:48:02 +00:00
parent e3ab4b5e08
commit 922aafbd2d
2 changed files with 0 additions and 9 deletions

View File

@ -318,9 +318,7 @@ clutter_event_new (ClutterEventType type)
event_hash = g_hash_table_new (g_direct_hash, NULL);
new_event = g_slice_new0 (ClutterEvent);
new_event->type = new_event->any.type = type;
new_event->flags = CLUTTER_EVENT_NONE;
g_hash_table_insert (event_hash, new_event, GUINT_TO_POINTER (1));