[totem] browser-plugin: Use constant for image-missing name



commit 0d9c628f62c677a974da85986fcd753617a4fa10
Author: Bastien Nocera <hadess hadess net>
Date:   Wed Mar 27 14:00:47 2013 +0100

    browser-plugin: Use constant for image-missing name

 browser-plugin/totem-plugin-viewer.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/browser-plugin/totem-plugin-viewer.c b/browser-plugin/totem-plugin-viewer.c
index 1b638a1..02f775d 100644
--- a/browser-plugin/totem-plugin-viewer.c
+++ b/browser-plugin/totem-plugin-viewer.c
@@ -65,6 +65,8 @@ char * totem_pl_parser_resolve_uri (GFile *base_gfile, const char *relative_uri)
 #define VOLUME_UP_OFFSET (0.08)
 #define MINIMUM_VIDEO_SIZE 150
 
+#define IMAGE_MISSING "image-missing"
+
 typedef enum {
        TOTEM_PLUGIN_TYPE_GMP,
        TOTEM_PLUGIN_TYPE_NARROWSPACE,
@@ -281,7 +283,7 @@ totem_embedded_set_error_logo (TotemEmbedded *embedded,
                               GDBusMethodInvocation *invocation)
 {
        g_message ("totem_embedded_set_error_logo called by browser plugin");
-       totem_embedded_set_logo_by_name (embedded, "image-missing");
+       totem_embedded_set_logo_by_name (embedded, IMAGE_MISSING);
        g_dbus_method_invocation_return_value (invocation, NULL);
 }
 
@@ -1449,7 +1451,7 @@ on_error_event (BaconVideoWidget *bvw,
        }
 
        totem_embedded_set_error (emb, BVW_ERROR_GENERIC, message);
-       totem_embedded_set_logo_by_name (emb, "image-missing");
+       totem_embedded_set_logo_by_name (emb, IMAGE_MISSING);
 }
 
 static void
@@ -2019,7 +2021,7 @@ totem_embedded_push_parser (gpointer data)
                g_message ("Couldn't parse playlist '%s'", emb->current_uri);
                totem_embedded_set_error (emb, BVW_ERROR_EMPTY_FILE,
                                          _("No playlist or playlist empty"));
-               totem_embedded_set_logo_by_name (emb, "image-missing");
+               totem_embedded_set_logo_by_name (emb, IMAGE_MISSING);
                return FALSE;
        } else if (emb->playlist == NULL) {
                g_message ("Playlist empty");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]