Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_fm.c e_fm_prop.c 


Log Message:
Fix warnings.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -3 -r1.159 -r1.160
--- e_fm.c      6 May 2007 06:41:59 -0000       1.159
+++ e_fm.c      6 May 2007 16:20:30 -0000       1.160
@@ -1473,13 +1473,13 @@
                  broken_link = p[0];
                  p += 1;
                  
-                 path = p;
+                 path = (char *)p;
                  p += strlen(path) + 1;
 
-                 lnk = p;
+                 lnk = (char *)p;
                  p += strlen(lnk) + 1;
                  
-                 rlnk = p;
+                 rlnk = (char *)p;
                  p += strlen(rlnk) + 1;
                  
                  memcpy(&(finf.st), &st, sizeof(struct stat));
@@ -3804,8 +3804,6 @@
        _e_fm2_icon_menu(ic, ic->sd->obj, ev->timestamp);
        e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj),
                                        ev->button);
-//     evas_event_feed_mouse_up(evas_object_evas_get(ic->sd->obj), ev->button,
-//                              EVAS_BUTTON_NONE, ev->timestamp, NULL);
      }
 }
     
@@ -3949,9 +3947,6 @@
             e_drag_start(d, ic->drag.x, ic->drag.y);
             e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj),
                                             1);
-//          evas_event_feed_mouse_up(evas_object_evas_get(ic->sd->obj),
-//                                   1, EVAS_BUTTON_NONE,
-//                                   ecore_x_current_time_get(), NULL);
          }
      }
 }
@@ -4175,7 +4170,7 @@
    if (ev->button == 1)
      {
        Evas_List *l;
-       int multi_sel = 0, range_sel = 0, seen = 0, sel_change = 0;
+       int multi_sel = 0, range_sel = 0, sel_change = 0;
        
        if (sd->config->selection.windows_modifiers)
          {
@@ -4218,8 +4213,6 @@
        _e_fm2_menu(sd->obj, ev->timestamp);
        e_util_evas_fake_mouse_up_later(evas_object_evas_get(sd->obj),
                                        ev->button);
-//     evas_event_feed_mouse_up(evas_object_evas_get(sd->obj), ev->button,
-//                              EVAS_BUTTON_NONE, ev->timestamp, NULL);
      }
 }
     
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm_prop.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- e_fm_prop.c 4 May 2007 07:48:48 -0000       1.18
+++ e_fm_prop.c 6 May 2007 16:20:30 -0000       1.19
@@ -51,7 +51,6 @@
 static void _cb_fsel_sel(void *data, Evas_Object *obj);
 static void _cb_fsel_ok(void *data, E_Dialog *dia);
 static void _cb_fsel_cancel(void *data, E_Dialog *dia);
-static void _cb_file_change(void *data);
 
 /* Actual config data we will be playing with whil the dialog is active */
 struct _E_Config_Dialog_Data



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to