[empathy: 13/15] Use a appropriate unique name for Empathy unique app



commit 1e878d27797a90e0602180972f1727caed6c87eb
Author: Sjoerd Simons <sjoerd simons collabora co uk>
Date:   Wed Feb 24 15:55:14 2010 +0000

    Use a appropriate unique name for Empathy unique app

 libempathy/empathy-utils.h |    2 --
 src/empathy-debug-window.c |    4 ++--
 src/empathy.c              |    2 +-
 3 files changed, 3 insertions(+), 5 deletions(-)
---
diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h
index 859aed1..0fc6fc2 100644
--- a/libempathy/empathy-utils.h
+++ b/libempathy/empathy-utils.h
@@ -37,8 +37,6 @@
 #define EMPATHY_GET_PRIV(obj,type) ((type##Priv *) ((type *) obj)->priv)
 #define EMP_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0')
 
-#define EMPATHY_CLIENT_NAME "org.freedesktop.Telepathy.Client.Empathy"
-
 G_BEGIN_DECLS
 
 void         empathy_init                           (void);
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c
index a78ae57..f15bb3d 100644
--- a/src/empathy-debug-window.c
+++ b/src/empathy-debug-window.c
@@ -746,8 +746,8 @@ debug_window_fill_cm_chooser (EmpathyDebugWindow *debug_window)
   /* Add empathy */
   gtk_list_store_append (priv->cms, &iter);
   gtk_list_store_set (priv->cms, &iter,
-      COL_CM_NAME, "empathy",
-      COL_CM_UNIQUE_NAME, EMPATHY_CLIENT_NAME,
+      COL_CM_NAME, _(PACKAGE_NAME),
+      COL_CM_UNIQUE_NAME, "org.gnome."PACKAGE_NAME,
       -1);
   gtk_combo_box_set_active (GTK_COMBO_BOX (priv->cm_chooser), 0);
 
diff --git a/src/empathy.c b/src/empathy.c
index 308ea21..5ba8be1 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -612,7 +612,7 @@ main (int argc, char *argv[])
   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
 #endif
 
-  unique_app = unique_app_new (EMPATHY_CLIENT_NAME, NULL);
+  unique_app = unique_app_new ("org.gnome."PACKAGE_NAME, NULL);
 
   if (unique_app_is_running (unique_app))
     {



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