~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to libbrasero-utils/brasero-io.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-08 09:33:41 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20090908093341-jh02q5ba0q8jyu9l
Tags: 2.27.92-0ubuntu1
* New upstream release (LP: #425998)
  - Some improvements when handling DVD-RW sequential
  - #593829 - Brasero gets stuck in a loop at "Getting size" while burning another session on a multi-session disk
  - #578466 - Unable to overburn
  - #593314 - Brasero is failing to burn from sftp
  - #593492 - Compilation must be ordered by file name
  - #587122 - Copying DVD - "Error while reading video DVD (no error)"
  - #592026 - brasero crashes when eject a medium
  - #592025 - brasero crashes on detecting src images on a NFS path when preparing burning an image
  - #591880 - Image checksumming causes internal error (LP: #354995)
  - #591397 - Brasero Main window pops up after exiting from Image Burning window.
  - Translation updates
  - lots of small fixes and improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
596
596
        GMountOperation *operation;
597
597
        BraseroIOMount mount = { NULL, };
598
598
 
599
 
        /* FIXME: need a way to get a window for the operation */
600
 
//      operation = gtk_mount_operation_new (GTK_WINDOW (brasero_app_get_default ()));
601
 
        operation = NULL;
 
599
        /* FIXME: need a way to get a parent window for the operation */
 
600
        operation = gtk_mount_operation_new (NULL);
602
601
        g_file_mount_enclosing_volume (file,
603
602
                                       G_MOUNT_MOUNT_NONE,
604
603
                                       operation,
605
604
                                       cancel,
606
605
                                       brasero_io_mount_enclosing_volume_cb,
607
606
                                       &mount);
 
607
        g_object_unref (operation);
608
608
 
609
609
        /* sleep and wait operation end */
610
610
        while (!mount.finished && !g_cancellable_is_cancelled (cancel))