remove white space
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 15 Dec 2011 05:25:37 +0000 (05:25 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 15 Dec 2011 05:25:37 +0000 (05:25 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@66232 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_events.c
src/lib/canvas/evas_focus.c

index f142c2a..cd304f6 100644 (file)
@@ -198,7 +198,7 @@ evas_event_feed_mouse_down(Evas *e, int b, Evas_Button_Flags flags, unsigned int
    Evas_Event_Mouse_Down ev;
    Evas_Object *obj;
    int addgrab = 0;
-   
+
    MAGIC_CHECK(e, Evas, MAGIC_EVAS);
    return;
    MAGIC_CHECK_END();
@@ -450,7 +450,7 @@ evas_event_feed_mouse_up(Evas *e, int b, Evas_Button_Flags flags, unsigned int t
      }
   /* remove released touch point from the touch point list */
    _evas_touch_point_remove(e, 0);
+
    _evas_unwalk(e);
 }
 
index a1a3bca..5f52030 100644 (file)
@@ -18,21 +18,21 @@ evas_object_focus_set(Evas_Object *obj, Eina_Bool focus)
 
    if (focus)
      {
-       if (obj->focused) goto end;
-       if (obj->layer->evas->focused)
-         evas_object_focus_set(obj->layer->evas->focused, 0);
-       obj->focused = 1;
-       obj->layer->evas->focused = obj;
-       evas_object_event_callback_call(obj, EVAS_CALLBACK_FOCUS_IN, NULL);
+        if (obj->focused) goto end;
+        if (obj->layer->evas->focused)
+          evas_object_focus_set(obj->layer->evas->focused, 0);
+        obj->focused = 1;
+        obj->layer->evas->focused = obj;
+        evas_object_event_callback_call(obj, EVAS_CALLBACK_FOCUS_IN, NULL);
         evas_event_callback_call(obj->layer->evas,
                                  EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN, obj);
      }
    else
      {
-       if (!obj->focused) goto end;
-       obj->focused = 0;
-       obj->layer->evas->focused = NULL;
-       evas_object_event_callback_call(obj, EVAS_CALLBACK_FOCUS_OUT, NULL);
+        if (!obj->focused) goto end;
+        obj->focused = 0;
+        obj->layer->evas->focused = NULL;
+        evas_object_event_callback_call(obj, EVAS_CALLBACK_FOCUS_OUT, NULL);
         evas_event_callback_call(obj->layer->evas,
                                  EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT, obj);
      }