~ubuntu-branches/ubuntu/dapper/file-roller/dapper-updates

« back to all changes in this revision

Viewing changes to src/window.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-04-11 08:44:59 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20060411084459-9r22188ftese2ev2
Tags: upstream-2.14.1
ImportĀ upstreamĀ versionĀ 2.14.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3916
3916
                                                "application/x-cd-image",
3917
3917
                                                "application/x-deb",
3918
3918
                                                "application/x-ar",
 
3919
                                                "application/x-7z-compressed",
3919
3920
                                                NULL);
3920
3921
        egg_recent_model_set_filter_uri_schemes (recent_model, "file", NULL);
3921
3922
        egg_recent_model_set_limit (recent_model, eel_gconf_get_integer (PREF_UI_HISTORY_LEN, MAX_HISTORY_LEN));
4793
4794
                            junk_paths,
4794
4795
                            password);
4795
4796
 
 
4797
        if (window->archive->process->n_comm < 0) { /* no file to extract */
 
4798
                fr_process_start (window->archive->process);
 
4799
                return;
 
4800
        }
 
4801
 
4796
4802
        fr_process_set_continue_func (window->archive->process,
4797
4803
                                      extract__content_is_singleton,
4798
4804
                                      window);
5918
5924
                GnomeVFSResult result;
5919
5925
 
5920
5926
                for (scan = cdata->file_list; scan; scan = scan->next) {
5921
 
                        char *filename = scan->data;
5922
 
                        uris = g_list_prepend (uris, gnome_vfs_get_uri_from_local_path (filename));
 
5927
                        char *filename = gnome_vfs_get_uri_from_local_path (scan->data);
 
5928
                        uris = g_list_prepend (uris, filename);
5923
5929
                }
5924
5930
 
5925
5931
                command_list = g_list_prepend (command_list, cdata);