Fix warnings.

SVN revision: 29888
This commit is contained in:
Sebastian Dransfeld 2007-05-06 16:23:11 +00:00
parent d96c28b347
commit 06ef9d756b
3 changed files with 12 additions and 26 deletions

View File

@ -1473,13 +1473,13 @@ e_fm2_client_data(Ecore_Ipc_Event_Client_Data *e)
broken_link = p[0]; broken_link = p[0];
p += 1; p += 1;
path = p; path = (char *)p;
p += strlen(path) + 1; p += strlen(path) + 1;
lnk = p; lnk = (char *)p;
p += strlen(lnk) + 1; p += strlen(lnk) + 1;
rlnk = p; rlnk = (char *)p;
p += strlen(rlnk) + 1; p += strlen(rlnk) + 1;
memcpy(&(finf.st), &st, sizeof(struct stat)); memcpy(&(finf.st), &st, sizeof(struct stat));
@ -3804,8 +3804,6 @@ _e_fm2_cb_icon_mouse_down(void *data, Evas *e, Evas_Object *obj, void *event_inf
_e_fm2_icon_menu(ic, ic->sd->obj, ev->timestamp); _e_fm2_icon_menu(ic, ic->sd->obj, ev->timestamp);
e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj), e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj),
ev->button); 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_fm2_cb_icon_mouse_move(void *data, Evas *e, Evas_Object *obj, void *event_inf
e_drag_start(d, ic->drag.x, ic->drag.y); e_drag_start(d, ic->drag.x, ic->drag.y);
e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj), e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic->sd->obj),
1); 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 @@ _e_fm2_cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void *event_info)
if (ev->button == 1) if (ev->button == 1)
{ {
Evas_List *l; 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) if (sd->config->selection.windows_modifiers)
{ {
@ -4218,8 +4213,6 @@ _e_fm2_cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void *event_info)
_e_fm2_menu(sd->obj, ev->timestamp); _e_fm2_menu(sd->obj, ev->timestamp);
e_util_evas_fake_mouse_up_later(evas_object_evas_get(sd->obj), e_util_evas_fake_mouse_up_later(evas_object_evas_get(sd->obj),
ev->button); ev->button);
// evas_event_feed_mouse_up(evas_object_evas_get(sd->obj), ev->button,
// EVAS_BUTTON_NONE, ev->timestamp, NULL);
} }
} }

View File

@ -329,7 +329,7 @@ _e_ipc_cb_server_data(void *data, int type, void *event)
break; break;
case 2: /* monitor dir end */ case 2: /* monitor dir end */
{ {
Evas_List *l, *ll; Evas_List *l;
for (l = _e_dirs; l; l = l->next) for (l = _e_dirs; l; l = l->next)
{ {
@ -684,13 +684,13 @@ _e_file_add_mod(int id, const char *path, int op, int listing)
p[0] = broken_lnk; p[0] = broken_lnk;
p += 1; p += 1;
strcpy(p, path); strcpy((char *)p, path);
p += strlen(path) + 1; p += strlen(path) + 1;
strcpy(p, lnk); strcpy((char *)p, lnk);
p += strlen(lnk) + 1; p += strlen(lnk) + 1;
strcpy(p, rlnk); strcpy((char *)p, rlnk);
p += strlen(rlnk) + 1; p += strlen(rlnk) + 1;
bsz = p - buf; bsz = p - buf;
@ -891,13 +891,7 @@ static int
_e_cb_fop_mv_idler(void *data) _e_cb_fop_mv_idler(void *data)
{ {
E_Fop *fop; E_Fop *fop;
struct Fop_Data {
DIR *dir;
const char *path, *path2;
} *fd, *fd2;
struct dirent *dp = NULL;
char buf[PATH_MAX], buf2[PATH_MAX], *lnk;
fop = (E_Fop *)data; fop = (E_Fop *)data;
if (!fop->data) if (!fop->data)
{ {
@ -1203,7 +1197,7 @@ _e_path_fix_order(const char *path, const char *rel, int rel_to, int x, int y)
{ {
if (!strcmp(l->data, rel)) if (!strcmp(l->data, rel))
{ {
printf("INSERT %s\n", l->data); printf("INSERT %s\n", (char *)l->data);
if (rel_to == 2) /* replace */ if (rel_to == 2) /* replace */
{ {
free(l->data); free(l->data);
@ -1226,8 +1220,8 @@ _e_path_fix_order(const char *path, const char *rel, int rel_to, int x, int y)
{ {
while (files) while (files)
{ {
printf("W %s\n", files->data); printf("W %s\n", (char *)files->data);
fprintf(fh, "%s\n", files->data); fprintf(fh, "%s\n", (char *)files->data);
free(files->data); free(files->data);
files = evas_list_remove_list(files, files); files = evas_list_remove_list(files, files);
} }

View File

@ -51,7 +51,6 @@ static void _cb_preview_update(void *data, Evas_Object *obj, void *event_info);
static void _cb_fsel_sel(void *data, Evas_Object *obj); static void _cb_fsel_sel(void *data, Evas_Object *obj);
static void _cb_fsel_ok(void *data, E_Dialog *dia); static void _cb_fsel_ok(void *data, E_Dialog *dia);
static void _cb_fsel_cancel(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 */ /* Actual config data we will be playing with whil the dialog is active */
struct _E_Config_Dialog_Data struct _E_Config_Dialog_Data