~ubuntu-branches/ubuntu/maverick/brasero/maverick

« back to all changes in this revision

Viewing changes to libbrasero-burn/burn-task.c

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Robert Ancell
  • Date: 2009-11-06 17:23:58 UTC
  • mfrom: (1.1.33 upstream)
  • Revision ID: james.westby@ubuntu.com-20091106172358-hke0i08w2r14t6ii
Tags: 2.29.1-0ubuntu1
[ Robert Ancell ]
* New upstream release: (LP: #475008)
  - New cdda2wav plugin to copy more accurately audio CDs
  - Support burning DTS wav files
  - Multiple copies: now brasero will chain up copies on every insertion
  - Start to move away from 
  - Lots of code cleanups
  - New dialog when ejection did not work
  - Lots of strings changed (and hopefully improved)
* debian/control.in:
  - Build-depends on libcanberra-dev, libcanberra-gtk-dev
* debian/patches/012_build_error.patch:
  - Fix build error

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
                                      error);
189
189
 
190
190
        BRASERO_BURN_LOG ("stopped %s", G_OBJECT_TYPE_NAME (item));
191
 
 
192
191
        return result;
193
192
}
194
193
 
220
219
                        g_error_free (local_error);
221
220
                        local_error = item_error;
222
221
                }
223
 
        };
 
222
        }
224
223
 
225
224
        if (local_error) {
226
225
                if (error && *error == NULL)
347
346
 
348
347
        priv = BRASERO_TASK_PRIVATE (task);
349
348
 
350
 
        /* brasero_job_error/brasero_job_finished should not be called during
351
 
         * ::init and ::start. Instead a job should return any error directly */
 
349
        /* brasero_job_error/brasero_job_finished ()
 
350
         * should not be called during ::init and ::start.
 
351
         * Instead a job should return errors directly */
352
352
        result = brasero_task_send_stop_signal (task, retval, &error);
353
353
 
354
354
        priv->retval = retval;
396
396
        priv = BRASERO_TASK_PRIVATE (self);
397
397
 
398
398
        /* see if we have really started a loop */
399
 
        /* FIXME: shouldn't it be an error if it is called while the loop is 
400
 
         * not running ? */
 
399
        /* FIXME: shouldn't it be an error if it is called
 
400
         * while the loop is not running ? */
401
401
        if (!brasero_task_is_running (self))
402
402
                return;
403
403
                
405
405
                BraseroTaskItem *item;
406
406
                GError *error_item = NULL;
407
407
 
408
 
                /* There are some tracks left, get the first task item and
409
 
                 * restart it. */
 
408
                /* There are some tracks left, get the first
 
409
                 * task item and restart it. */
410
410
                item = priv->leader;
411
411
                while (brasero_task_item_previous (item))
412
412
                        item = brasero_task_item_previous (item);