diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2013-08-04 15:07:50 +0200 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2013-08-04 15:07:50 +0200 |
commit | 4fee5dcc803bcb6ed3bef168924003fe75cc358b (patch) | |
tree | d9259df16c9a1d8932dae034033fedd8599e67f8 /src/totem-interface.c | |
parent | b32bee964f239c9a2d046a17c466797ec8132a73 (diff) | |
download | totem-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-interface.c')
-rw-r--r-- | src/totem-interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/totem-interface.c b/src/totem-interface.c index 459f48388..28678ee5e 100644 --- a/src/totem-interface.c +++ b/src/totem-interface.c @@ -54,7 +54,7 @@ totem_interface_error_dialog (const char *title, const char *reason, GtkWidget *error_dialog; if (reason == NULL) - g_warning ("totem_object_action_error called with reason == NULL"); + g_warning ("%s called with reason == NULL", G_STRFUNC); error_dialog = gtk_message_dialog_new (NULL, |