summaryrefslogtreecommitdiff
path: root/src/plugins/properties/totem-movie-properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/properties/totem-movie-properties.c')
-rw-r--r--src/plugins/properties/totem-movie-properties.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/properties/totem-movie-properties.c b/src/plugins/properties/totem-movie-properties.c
index 334b39017..5cd23d734 100644
--- a/src/plugins/properties/totem-movie-properties.c
+++ b/src/plugins/properties/totem-movie-properties.c
@@ -105,7 +105,7 @@ totem_movie_properties_plugin_file_opened (TotemObject *totem,
{
GtkWidget *bvw;
- bvw = totem_get_video_widget (totem);
+ bvw = totem_object_get_video_widget (totem);
bacon_video_widget_properties_update
(BACON_VIDEO_WIDGET_PROPERTIES (plugin->props), bvw);
g_object_unref (bvw);
@@ -132,7 +132,7 @@ totem_movie_properties_plugin_metadata_updated (TotemObject *totem,
{
GtkWidget *bvw;
- bvw = totem_get_video_widget (totem);
+ bvw = totem_object_get_video_widget (totem);
bacon_video_widget_properties_update
(BACON_VIDEO_WIDGET_PROPERTIES (plugin->props), bvw);
g_object_unref (bvw);
@@ -149,7 +149,7 @@ impl_activate (PeasActivatable *plugin)
pi->props = bacon_video_widget_properties_new ();
gtk_widget_show (pi->props);
- totem_add_sidebar_page (totem,
+ totem_object_add_sidebar_page (totem,
"properties",
_("Properties"),
pi->props);
@@ -193,6 +193,6 @@ impl_deactivate (PeasActivatable *plugin)
totem_movie_properties_plugin_file_closed,
plugin);
pi->handler_id_stream_length = 0;
- totem_remove_sidebar_page (totem, "properties");
+ totem_object_remove_sidebar_page (totem, "properties");
}