summaryrefslogtreecommitdiff
path: root/src/totem-options.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-options.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-options.c')
-rw-r--r--src/totem-options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/totem-options.c b/src/totem-options.c
index d67617905..ddc6ad0bf 100644
--- a/src/totem-options.c
+++ b/src/totem-options.c
@@ -114,7 +114,7 @@ totem_options_process_for_server (Totem *totem,
/* Are we quitting ? */
if (options->quit) {
- totem_object_action_remote (totem, TOTEM_REMOTE_COMMAND_QUIT, NULL);
+ totem_object_remote_command (totem, TOTEM_REMOTE_COMMAND_QUIT, NULL);
return;
}
@@ -135,7 +135,7 @@ totem_options_process_for_server (Totem *totem,
filename = options->filenames[i];
full_path = totem_create_full_path (filename);
- totem_object_action_remote (totem, action, full_path ? full_path : filename);
+ totem_object_remote_command (totem, action, full_path ? full_path : filename);
g_free (full_path);
@@ -203,13 +203,13 @@ totem_options_process_for_server (Totem *totem,
/* No commands, no files, show ourselves */
if (commands == NULL && options->filenames == NULL) {
- totem_object_action_remote (totem, TOTEM_REMOTE_COMMAND_SHOW, NULL);
+ totem_object_remote_command (totem, TOTEM_REMOTE_COMMAND_SHOW, NULL);
return;
}
/* Send commands */
for (l = commands; l != NULL; l = l->next) {
- totem_object_action_remote (totem, GPOINTER_TO_INT (l->data), NULL);
+ totem_object_remote_command (totem, GPOINTER_TO_INT (l->data), NULL);
}
g_list_free (commands);