seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=772bd00164df0ca6eff8aa2f7d2529efe01fc163

commit 772bd00164df0ca6eff8aa2f7d2529efe01fc163
Author: Amitesh Singh <[email protected]>
Date:   Mon Mar 24 01:20:46 2014 +0900

    genlist: removed printf from commit. b72db5c19
    
    Reviewers: seoz
    
    Reviewed By: seoz
    
    CC: seoz
    
    Differential Revision: https://phab.enlightenment.org/D652
---
 src/lib/elm_genlist.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index f8d03bd..9df255e 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -2418,7 +2418,6 @@ _item_single_select_up(Elm_Genlist_Smart_Data *sd)
      prev = (Elm_Gen_Item *)elm_genlist_item_prev_get
         (sd->last_selected_item);
 
-   printf("last %p prev %p\n", sd->last_selected_item, prev);
    while (prev)
      {
         if ((prev->generation == sd->generation) &&
@@ -2427,7 +2426,6 @@ _item_single_select_up(Elm_Genlist_Smart_Data *sd)
         prev = ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(prev)->prev);
      }
 
-   printf("prev %p\n", prev);
    if (!prev) return EINA_FALSE;
 
    _all_items_deselect(sd);

-- 


Reply via email to