diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-10-17 20:45:52 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-10-17 20:45:52 +0800 |
commit | 22226e15b161135547c08ca743f0f983e2b8d6eb (patch) | |
tree | 28884bd09d5e8e2c9520fc2b8cb1267acc81c559 /src | |
parent | 55f4cdba06d0d85dacac50288e13bc3065ebd29e (diff) | |
download | gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar.gz gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar.bz2 gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar.lz gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar.xz gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.tar.zst gsoc2013-empathy-22226e15b161135547c08ca743f0f983e2b8d6eb.zip |
Fixed typos of constants in the import dialog. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1595
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-import-dialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-import-dialog.c b/src/empathy-import-dialog.c index 7c5ddd50c..a72d26162 100644 --- a/src/empathy-import-dialog.c +++ b/src/empathy-import-dialog.c @@ -200,7 +200,7 @@ empathy_import_dialog_pidgin_parse_setting (gchar *protocol, { int i; - if (!xmlHasProp (setting, PIDGIN_SETTING_TAG_NAME)) + if (!xmlHasProp (setting, PIDGIN_ACCOUNT_TAG_NAME)) return; for (i = 0; i < G_N_ELEMENTS (pidgin_mc_map); i++) { @@ -208,7 +208,7 @@ empathy_import_dialog_pidgin_parse_setting (gchar *protocol, continue; } - if (strcmp ((gchar *) xmlGetProp (setting, PIDGIN_SETTING_TAG_NAME), + if (strcmp ((gchar *) xmlGetProp (setting, PIDGIN_ACCOUNT_TAG_NAME), pidgin_mc_map[i].pidgin_name) == 0) { gint arg; @@ -261,7 +261,7 @@ empathy_import_dialog_pidgin_import_accounts () node = rootnode->children; while (node) { - if (strcmp ((gchar *) node->name, PIDGIN_SETTING_TAG_ACCOUNT) == 0) { + if (strcmp ((gchar *) node->name, PIDGIN_ACCOUNT_TAG_ACCOUNT) == 0) { child = node->children; settings = g_hash_table_new (g_str_hash, g_str_equal); |