Removed an unused variable.
[ruby-ecore.git] / src / ecore / rb_event_handler.c
index 8e7312926373a0f8ec9b8ad3efceec518d736f8d..f296ae26255655b8f0f96966738b841fd2368f29 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_event_handler.c 359 2006-02-12 15:51:58Z tilman $
+ * $Id: rb_event_handler.c 363 2006-02-14 19:02:53Z tilman $
  *
  * Copyright (C) 2004 ruby-ecore team (see AUTHORS)
  *
@@ -131,7 +131,6 @@ static int on_ecore_event (void *data, int type, void *event)
        RbEventHandler *h = NULL;
        VALUE handler, klass, obj, tmp, res;
        int handler_type, len, i;
-       bool called = false;
 
        /* instantiate the event object
         * first, find the class we're gonna use
@@ -154,7 +153,6 @@ static int on_ecore_event (void *data, int type, void *event)
                if (handler_type == type) {
                        Data_Get_Struct (handler, RbEventHandler, h);
                        res = rb_funcall (h->callback, rb_intern ("call"), 1, obj);
-                       called = true;
 
                        /* if the block returned false, don't call the other
                         * event handlers