aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-account.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy/empathy-account.c')
-rw-r--r--libempathy/empathy-account.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c
index 7d89f20fc..623a324e8 100644
--- a/libempathy/empathy-account.c
+++ b/libempathy/empathy-account.c
@@ -28,6 +28,7 @@
#include <telepathy-glib/gtypes.h>
#include <telepathy-glib/util.h>
#include <telepathy-glib/interfaces.h>
+#include <telepathy-glib/defs.h>
#define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
#include <libempathy/empathy-debug.h>
@@ -38,8 +39,6 @@
#include "empathy-utils.h"
#include "empathy-marshal.h"
-#define UNIQUE_NAME_PREFIX "/org/freedesktop/Telepathy/Account/"
-
/* signals */
enum {
STATUS_CHANGED,
@@ -418,9 +417,9 @@ empathy_account_parse_unique_name (const gchar *bus_name,
const gchar *cm, *cm_end;
g_return_val_if_fail (
- g_str_has_prefix (bus_name, UNIQUE_NAME_PREFIX), FALSE);
+ g_str_has_prefix (bus_name, TP_ACCOUNT_OBJECT_PATH_BASE), FALSE);
- cm = bus_name + strlen (UNIQUE_NAME_PREFIX);
+ cm = bus_name + strlen (TP_ACCOUNT_OBJECT_PATH_BASE);
for (cm_end = cm; *cm_end != '/' && *cm_end != '\0'; cm_end++)
/* pass */;