]> git.0d.be Git - empathy.git/commitdiff
Fixed typos of constants in the import dialog. (Jonny Lamb)
authorJonny Lamb <jonny.lamb@collabora.co.uk>
Fri, 17 Oct 2008 12:45:52 +0000 (12:45 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 17 Oct 2008 12:45:52 +0000 (12:45 +0000)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1595

src/empathy-import-dialog.c

index 7c5ddd50c576a2602e82da0666515ecceb09b2f2..a72d261626a893c48ec59ef553d2da1966f72de8 100644 (file)
@@ -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);