~ubuntu-branches/ubuntu/oneiric/brasero/oneiric

« back to all changes in this revision

Viewing changes to src/brasero-playlist.c

  • Committer: Package Import Robot
  • Author(s): Rodrigo Moya
  • Date: 2011-09-09 12:27:41 UTC
  • mfrom: (1.1.48 upstream)
  • Revision ID: package-import@ubuntu.com-20110909122741-j98wdzlqbbzcgwl2
Tags: 3.1.90-0ubuntu1
* New upstream release
* debian/watch:
  - Watch .bz2 tarballs
* debian/control:
  - Bump libunity-dev build requirement
* debian/patches/012_appindicator.patch:
* debian/patches/013_unity_launcher_progress.patch:
  - Rebased patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
 
97
97
G_DEFINE_TYPE_WITH_CODE (BraseroPlaylist,
98
98
                         brasero_playlist,
99
 
                         GTK_TYPE_VBOX,
 
99
                         GTK_TYPE_BOX,
100
100
                         G_IMPLEMENT_INTERFACE (BRASERO_TYPE_URI_CONTAINER,
101
101
                                                brasero_playlist_iface_uri_container_init)
102
102
                         G_IMPLEMENT_INTERFACE (BRASERO_TYPE_LAYOUT_OBJECT,
697
697
 
698
698
        obj->priv = g_new0 (BraseroPlaylistPrivate, 1);
699
699
        gtk_box_set_spacing (GTK_BOX (obj), BRASERO_PLAYLIST_SPACING);
 
700
        gtk_orientable_set_orientation (GTK_ORIENTABLE (obj), GTK_ORIENTATION_VERTICAL);
700
701
 
701
 
        hbox = gtk_hbox_new (FALSE, 8);
 
702
        hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 8);
702
703
        gtk_widget_show (hbox);
703
704
 
704
705
        obj->priv->button_add = gtk_button_new_from_stock (GTK_STOCK_ADD);