]> www.fi.muni.cz Git - evince.git/blobdiff - pixbuf/pixbuf-document.c
Added French translation Added fr to DOC_LINGUAS
[evince.git] / pixbuf / pixbuf-document.c
index f19d2d5e6f2a9899ce8373de56edfcddebb338cf..e3d064da4f95cbc2e9dfdcdcc5e43bb20a5547ef 100644 (file)
 #include "pixbuf-document.h"
 #include "ev-document-thumbnails.h"
 
-#include <libgnomevfs/gnome-vfs-uri.h>
-#include <libgnomevfs/gnome-vfs-utils.h>
-#include <libgnomevfs/gnome-vfs-ops.h>
-#include <libgnomevfs/gnome-vfs-xfer.h>
-
 struct _PixbufDocumentClass
 {
        GObjectClass parent_class;
@@ -84,31 +79,8 @@ pixbuf_document_save (EvDocument  *document,
                      GError     **error)
 {
        PixbufDocument *pixbuf_document = PIXBUF_DOCUMENT (document);
-       GnomeVFSResult result;
-       GnomeVFSURI *source_uri;
-       GnomeVFSURI *target_uri;
-       
-       if (!pixbuf_document->uri)
-               return FALSE;
-       
-       source_uri = gnome_vfs_uri_new (pixbuf_document->uri);
-       target_uri = gnome_vfs_uri_new (uri);
-
-       result = gnome_vfs_xfer_uri (source_uri, target_uri, 
-                                    GNOME_VFS_XFER_DEFAULT | GNOME_VFS_XFER_FOLLOW_LINKS,
-                                    GNOME_VFS_XFER_ERROR_MODE_ABORT,
-                                    GNOME_VFS_XFER_OVERWRITE_MODE_REPLACE,
-                                    NULL,
-                                    NULL);
-       gnome_vfs_uri_unref (target_uri);
-       gnome_vfs_uri_unref (source_uri);
-    
-       if (result != GNOME_VFS_OK)
-               g_set_error (error,
-                            EV_DOCUMENT_ERROR,
-                            0,
-                            gnome_vfs_result_to_string (result));                      
-       return (result == GNOME_VFS_OK);
+
+       return ev_xfer_uri_simple (pixbuf_document->uri, uri, error); 
 }
 
 static int