~ubuntu-branches/ubuntu/lucid/brasero/lucid-proposed

« back to all changes in this revision

Viewing changes to libbrasero-media/brasero-medium-selection.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-03-30 00:57:57 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330005757-ugoop0td80dcth72
Tags: 2.30.0-0ubuntu1
* New upstream version
  Bug Fixes:
  - Fix a problem if multiple tracks were processed in a single pass by
    a plugin then progress was not smooth 
  - Fix video options so that for SVCD we do have a proper default for
    aspect ratio 
  - Fix two problem with video transcoding: 
    - a hang that was caused by buffers being too little  
    - progress reporting that did not always properly work 
  - Make soft autodetection. 
  - Update to latest GTK code 
  - Fix #Bug 611111 - brasero burn:/// hangs 
  - Use gtk_widget_style_attach  () in realize implementations
* debian/control.in: 
  - updated gtk requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        NUM_COL
81
81
};
82
82
 
83
 
G_DEFINE_TYPE (BraseroMediumSelection, brasero_medium_selection, GTK_TYPE_COMBO_BOX);
 
83
/* GtkBuildable */
 
84
static GtkBuildableIface *parent_buildable_iface;
 
85
 
 
86
static void
 
87
brasero_medium_selection_buildable_init (GtkBuildableIface *iface)
 
88
{
 
89
        parent_buildable_iface = g_type_interface_peek_parent (iface);
 
90
 
91
 
 
92
G_DEFINE_TYPE_WITH_CODE (BraseroMediumSelection, brasero_medium_selection, GTK_TYPE_COMBO_BOX, G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE, brasero_medium_selection_buildable_init));
84
93
 
85
94
void
86
95
brasero_medium_selection_foreach (BraseroMediumSelection *selection,