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

(-)plugins/glob.c.orig (-2 / +2 lines)
Lines 116-122 Link Here
116
  GtkWidget *action_area;
116
  GtkWidget *action_area;
117
  GtkWidget *table;
117
  GtkWidget *table;
118
  GtkTooltips *tooltips;
118
  GtkTooltips *tooltips;
119
  gint selected_row;
119
  glong selected_row;
120
  
120
  
121
  dialog = gtk_dialog_new();
121
  dialog = gtk_dialog_new();
122
  dialog_vbox = GTK_DIALOG(dialog)->vbox;
122
  dialog_vbox = GTK_DIALOG(dialog)->vbox;
Lines 138-144 Link Here
138
  {
138
  {
139
    GString *text;
139
    GString *text;
140
    gchar *filename, *s;
140
    gchar *filename, *s;
141
    selected_row = (gint)GTK_CLIST(curr_view->clist)->selection->data;
141
    selected_row = (glong)GTK_CLIST(curr_view->clist)->selection->data;
142
    gtk_clist_get_text(GTK_CLIST(curr_view->clist), selected_row, 0, &filename);
142
    gtk_clist_get_text(GTK_CLIST(curr_view->clist), selected_row, 0, &filename);
143
    if ((s = strrchr(filename, '.')) != NULL)
143
    if ((s = strrchr(filename, '.')) != NULL)
144
    {
144
    {

Return to bug 114898