| 560 GtkTreeViewColumn *column; |
560 GtkTreeViewColumn *column; |
| 561 GtkTreeSelection *selection; |
561 GtkTreeSelection *selection; |
| 562 |
562 |
| 563 /* Build the tree model */ |
563 /* Build the tree model */ |
| 564 /* Transfer type, Progress Bar, Filename, Size, Remaining */ |
564 /* Transfer type, Progress Bar, Filename, Size, Remaining */ |
| 565 model = gtk_list_store_new(NUM_COLUMNS, GDK_TYPE_PIXBUF, G_TYPE_INT, |
565 model = gtk_list_store_new(NUM_COLUMNS, G_TYPE_STRING, G_TYPE_INT, |
| 566 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, |
566 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, |
| 567 G_TYPE_POINTER); |
567 G_TYPE_POINTER); |
| 568 dialog->model = model; |
568 dialog->model = model; |
| 569 |
569 |
| 570 /* Create the treeview */ |
570 /* Create the treeview */ |