~swem/totem/assignment

« back to all changes in this revision

Viewing changes to src/totem-menu.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-02-25 19:11:33 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100225191133-7bonpywglovrzohq
Tags: 2.29.91-1
* New upstream development release:
  + debian/patches/90_autotools.patch:
    - Refreshed for the new version.
  + debian/control.in:
    - Update build dependencies and dependencies.
* debian/patches/99_gst-bus_flush.patch:
  + Patch from upstream GIT to fix automatic codec installation
    and random errors showing up from previous tracks.
* debian/control.in:
  + Add ATK build dependency to allow buildds to actually install
    the correct version instead of producing an error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
524
524
        if (!GTK_IS_MENU_ITEM (proxy))
525
525
                return;
526
526
 
527
 
        label = GTK_LABEL (GTK_BIN (proxy)->child);
 
527
        label = GTK_LABEL (gtk_bin_get_child (GTK_BIN (proxy)));
528
528
 
529
529
        gtk_label_set_ellipsize (label, PANGO_ELLIPSIZE_MIDDLE);
530
530
        gtk_label_set_max_width_chars (label,TOTEM_MAX_RECENT_ITEM_LEN);
1379
1379
                                                              GTK_RESPONSE_CLOSE,
1380
1380
                                                              NULL);
1381
1381
                gtk_container_set_border_width (GTK_CONTAINER (totem->plugins), 5);
1382
 
                gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (totem->plugins)->vbox), 2);
 
1382
                gtk_box_set_spacing (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (totem->plugins))), 2);
1383
1383
                gtk_dialog_set_has_separator (GTK_DIALOG (totem->plugins), FALSE);
1384
1384
 
1385
1385
                g_signal_connect_object (G_OBJECT (totem->plugins),
1393
1393
 
1394
1394
                manager = totem_plugin_manager_new ();
1395
1395
                gtk_widget_show_all (GTK_WIDGET (manager));
1396
 
                gtk_container_add (GTK_CONTAINER (GTK_DIALOG (totem->plugins)->vbox),
 
1396
                gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (totem->plugins))),
1397
1397
                                   manager);
1398
1398
        }
1399
1399