~ubuntu-branches/ubuntu/vivid/brasero/vivid-proposed

« back to all changes in this revision

Viewing changes to libbrasero-burn/brasero-caps-session.c

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2011-05-18 17:53:39 UTC
  • mfrom: (1.1.47 upstream) (1.4.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110518175339-so6a6fejezs5i1pc
Tags: 3.0.0-1ubuntu1
* Rebase from Debian and GNOME3 PPA. Remaining Ubuntu changes:
* debian/control:
  - Build-Depend on dh-autoreconf, libappindicator3-dev and
    liblaunchpad-integration-3.0-dev
  - Recommends: brasero-cdrkit
  - libbrasero-media3-1 Depends on dvd+rw-tools not growisofs and
    Suggests rather than Recommends gstreamer plugin packages
* debian/patches/010_lpi.patch:
  - Launchpad integration patch
* debian/patches/012_appindicator.patch:
  - Use application indicators
* debian/rules:
  - Include autoreconf.mk
* debian/watch:
  - Watch unstable releases also

Show diffs side-by-side

added added

removed removed

Lines of Context:
373
373
 
374
374
        /* Go through all plugins the get the supported/... data flags for link */
375
375
        for (iter = link->plugins; iter; iter = iter->next) {
376
 
                gboolean result;
377
376
                BraseroPlugin *plugin;
378
377
                BraseroBurnFlag plugin_supported;
379
378
                BraseroBurnFlag plugin_compulsory;
382
381
                if (!brasero_plugin_get_active (plugin, ignore_plugin_errors))
383
382
                        continue;
384
383
 
385
 
                result = brasero_plugin_get_image_flags (plugin,
386
 
                                                         media,
387
 
                                                         session_flags,
388
 
                                                         &plugin_supported,
389
 
                                                         &plugin_compulsory);
 
384
                brasero_plugin_get_image_flags (plugin,
 
385
                                                media,
 
386
                                                session_flags,
 
387
                                                &plugin_supported,
 
388
                                                &plugin_compulsory);
390
389
                *supported |= plugin_supported;
391
390
        }
392
391
}