--- filetype_dialog.c.orig 2005-12-07 19:10:36.000000000 -0700 +++ filetype_dialog.c 2005-12-07 19:50:47.000000000 -0700 @@ -64,12 +64,12 @@ static void edit_action_cb(GtkWidget *widget) { - gint selected_row; + glong selected_row; gchar *col0_text, *col1_text; gchar *new_name, *new_action; if (GTK_CLIST(_actions_list)->selection != NULL) - selected_row = (gint)GTK_CLIST(_actions_list)->selection->data; + selected_row = (glong)GTK_CLIST(_actions_list)->selection->data; else return; @@ -106,10 +106,10 @@ static void remove_action_cb(GtkWidget *widget) { - gint selected_row; + glong selected_row; if (GTK_CLIST(_actions_list)->selection != NULL) - selected_row = (gint)GTK_CLIST(_actions_list)->selection->data; + selected_row = (glong)GTK_CLIST(_actions_list)->selection->data; else return; @@ -122,10 +122,10 @@ static void set_default_action_cb(GtkWidget *widget) { - gint selected_row; + glong selected_row; if (GTK_CLIST(_actions_list)->selection != NULL) - selected_row = (gint)GTK_CLIST(_actions_list)->selection->data; + selected_row = (glong)GTK_CLIST(_actions_list)->selection->data; else return;