summaryrefslogtreecommitdiff
path: root/src/totem-uri.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2013-08-04 15:07:50 +0200
committerPhilip Withnall <philip@tecnocode.co.uk>2013-08-04 15:07:50 +0200
commit4fee5dcc803bcb6ed3bef168924003fe75cc358b (patch)
treed9259df16c9a1d8932dae034033fedd8599e67f8 /src/totem-uri.c
parentb32bee964f239c9a2d046a17c466797ec8132a73 (diff)
downloadtotem-4fee5dcc803bcb6ed3bef168924003fe75cc358b.tar.gz
core: Consistently prefix plugin-visible API with “totem_object_”
Helps: https://bugzilla.gnome.org/show_bug.cgi?id=626399
Diffstat (limited to 'src/totem-uri.c')
-rw-r--r--src/totem-uri.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/totem-uri.c b/src/totem-uri.c
index 2b87f69a7..43ffe7e33 100644
--- a/src/totem-uri.c
+++ b/src/totem-uri.c
@@ -260,7 +260,7 @@ totem_create_full_path (const char *path)
}
static void
-totem_action_on_unmount (GVolumeMonitor *volume_monitor,
+totem_object_on_unmount (GVolumeMonitor *volume_monitor,
GMount *mount,
Totem *totem)
{
@@ -274,11 +274,11 @@ totem_setup_file_monitoring (Totem *totem)
g_signal_connect (G_OBJECT (totem->monitor),
"mount-pre-unmount",
- G_CALLBACK (totem_action_on_unmount),
+ G_CALLBACK (totem_object_on_unmount),
totem);
g_signal_connect (G_OBJECT (totem->monitor),
"mount-removed",
- G_CALLBACK (totem_action_on_unmount),
+ G_CALLBACK (totem_object_on_unmount),
totem);
}