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

(-)fileview.c.orig (-2 / +2 lines)
Lines 122-131 Link Here
122
  other_view->old_selection = g_list_copy(
122
  other_view->old_selection = g_list_copy(
123
                                GTK_CLIST(other_view->clist)->selection);
123
                                GTK_CLIST(other_view->clist)->selection);
124
  for (tmp = other_view->old_selection; tmp != NULL; tmp = tmp->next)
124
  for (tmp = other_view->old_selection; tmp != NULL; tmp = tmp->next)
125
    gtk_clist_set_background(GTK_CLIST(other_view->clist), (gint)tmp->data,
125
    gtk_clist_set_background(GTK_CLIST(other_view->clist), (glong)tmp->data,
126
                             &SELECT_COLOR);
126
                             &SELECT_COLOR);
127
  for (tmp = curr_view->old_selection; tmp != NULL; tmp = tmp->next)
127
  for (tmp = curr_view->old_selection; tmp != NULL; tmp = tmp->next)
128
    gtk_clist_set_background(GTK_CLIST(curr_view->clist), (gint)tmp->data,
128
    gtk_clist_set_background(GTK_CLIST(curr_view->clist), (glong)tmp->data,
129
                             &CLIST_COLOR);
129
                             &CLIST_COLOR);
130
130
131
  gtk_clist_unselect_all(GTK_CLIST(other_view->clist));
131
  gtk_clist_unselect_all(GTK_CLIST(other_view->clist));

Return to bug 114898