~swem/totem/assignment

« back to all changes in this revision

Viewing changes to src/totem-open-location.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-02-25 11:43:11 UTC
  • mto: (1.7.1) (24.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100225114311-ve36g1gdsx1e2emt
Tags: upstream-2.29.91
ImportĀ upstreamĀ versionĀ 2.29.91

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
 
232
232
        container = GTK_WIDGET (gtk_builder_get_object (open_location->priv->xml,
233
233
                                "open_uri_dialog_content"));
234
 
        gtk_box_pack_start (GTK_BOX (GTK_DIALOG (open_location)->vbox),
 
234
        gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (open_location))),
235
235
                                container,
236
236
                                TRUE,       /* expand */
237
237
                                TRUE,       /* fill */
238
238
                                0);         /* padding */
239
239
 
240
 
        gtk_widget_show_all (GTK_DIALOG (open_location)->vbox);
 
240
        gtk_widget_show_all (gtk_dialog_get_content_area (GTK_DIALOG (open_location)));
241
241
 
242
242
        return GTK_WIDGET (open_location);
243
243
}