seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=7850b395522714a803cb24049a42e82ead5ff4d2

commit 7850b395522714a803cb24049a42e82ead5ff4d2
Author: Daniel Juyung Seo <juyung....@samsung.com>
Date:   Tue Dec 10 01:03:27 2013 +0900

    test_dnd: clean up dnd sample code.
    
    - fixed formatting.
    - set timer pointer to null when canceling the timer.
---
 src/bin/test_dnd.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/bin/test_dnd.c b/src/bin/test_dnd.c
index d3fddf0..04cd2a1 100644
--- a/src/bin/test_dnd.c
+++ b/src/bin/test_dnd.c
@@ -401,8 +401,8 @@ static Eina_Bool
 _5s_timeout_gone(void *data)
 {
    printf("Cancel DnD\n");
-   Evas_Object *obj = data;
-   elm_drag_cancel(obj);
+   elm_drag_cancel(data);
+   _5s_timeout = NULL;
    return ECORE_CALLBACK_CANCEL;
 }
 
@@ -681,14 +681,15 @@ _gl_dragstart(void *data EINA_UNUSED, Evas_Object *obj)
 {
    printf("<%s> <%d>\n", __func__, __LINE__);
    if (_5s_cancel)
-      _5s_timeout = ecore_timer_add(5.0, _5s_timeout_gone, obj);
+     _5s_timeout = ecore_timer_add(5.0, _5s_timeout_gone, obj);
 }
 
 static Eina_Bool
 _grid_data_getcb(Evas_Object *obj,  /* The genlist object */
-      Elm_Object_Item *it,
-      Elm_Drag_User_Info *info)
-{  /* This called before starting to drag, mouse-down was on it */
+                 Elm_Object_Item *it,
+                 Elm_Drag_User_Info *info)
+{
+   /* This called before starting to drag, mouse-down was on it */
    info->format = ELM_SEL_FORMAT_TARGETS;
    info->createicon = _gl_createicon;
    info->createdata = it;
@@ -905,7 +906,7 @@ test_dnd_genlist_gengrid(void *data EINA_UNUSED, 
Evas_Object *obj EINA_UNUSED, v
               NULL, NULL, NULL, NULL, _grid_dropcb, NULL);
 
         elm_drag_item_container_add(grid, ANIM_TIME, DRAG_TIMEOUT,
-              _grid_item_getcb, _grid_data_getcb);
+                                    _grid_item_getcb, _grid_data_getcb);
         for (i = 0; i < 20; i++)
           {
              snprintf(buf, sizeof(buf), "%s/images/%s", 
elm_app_data_dir_get(), img[(i % 9)]);

-- 


Reply via email to