summaryrefslogtreecommitdiff
path: root/src/totem-open-location.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-02-12 18:02:21 +0100
committerJavier Jardón <jjardon@gnome.org>2010-02-12 19:53:52 +0100
commiteb74e996cbddfa6758b2bb392fbbaf7310adf3b6 (patch)
treeeaa36e9580c54925a96c6add4e3854c0ad5bb3a2 /src/totem-open-location.c
parent92f531972318300b40d988ca0a6780d49bad4989 (diff)
downloadtotem-eb74e996cbddfa6758b2bb392fbbaf7310adf3b6.tar.gz
Use accessor functions instead direct access
This is necessary to build with -DGSEAL_ENABLE Required GTK+ version bumped to 2.19.5 http://bugzilla.gnome.org/show_bug.cgi?id=594053
Diffstat (limited to 'src/totem-open-location.c')
-rw-r--r--src/totem-open-location.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/totem-open-location.c b/src/totem-open-location.c
index afa245132..3973144a0 100644
--- a/src/totem-open-location.c
+++ b/src/totem-open-location.c
@@ -231,13 +231,13 @@ totem_open_location_new (Totem *totem)
container = GTK_WIDGET (gtk_builder_get_object (open_location->priv->xml,
"open_uri_dialog_content"));
- gtk_box_pack_start (GTK_BOX (GTK_DIALOG (open_location)->vbox),
+ gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (open_location))),
container,
TRUE, /* expand */
TRUE, /* fill */
0); /* padding */
- gtk_widget_show_all (GTK_DIALOG (open_location)->vbox);
+ gtk_widget_show_all (gtk_dialog_get_content_area (GTK_DIALOG (open_location)));
return GTK_WIDGET (open_location);
}