Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 114898 | Differences between
and this patch

Collapse All | Expand All

(-)add_ext_dialog.c.orig (-2 / +2 lines)
Lines 32-38 Link Here
32
add_ext_ok_cb(GtkWidget *widget)
32
add_ext_ok_cb(GtkWidget *widget)
33
{
33
{
34
  FileType *ft;
34
  FileType *ft;
35
  gint selected_row;
35
  glong selected_row;
36
  
36
  
37
  if (GTK_CLIST(filetypes_clist)->selection == NULL)
37
  if (GTK_CLIST(filetypes_clist)->selection == NULL)
38
  {
38
  {
Lines 41-47 Link Here
41
  }
41
  }
42
  else
42
  else
43
  {
43
  {
44
    selected_row = (gint)GTK_CLIST(filetypes_clist)->selection->data;
44
    selected_row = (glong)GTK_CLIST(filetypes_clist)->selection->data;
45
  }
45
  }
46
46
47
  ft = gtk_clist_get_row_data(GTK_CLIST(filetypes_clist), selected_row);
47
  ft = gtk_clist_get_row_data(GTK_CLIST(filetypes_clist), selected_row);

Return to bug 114898