]> git.0d.be Git - empathy.git/commitdiff
empathy-theme-manager.c: fix shadow declarations
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 21 Oct 2009 16:24:14 +0000 (17:24 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 22 Oct 2009 09:43:50 +0000 (10:43 +0100)
libempathy-gtk/empathy-theme-manager.c

index fea2eca51d09a7caca37403abdd1c5e45a94b0f8..cda978330886b0caa0182c0ff18bdcd790b804cf 100644 (file)
@@ -573,24 +573,24 @@ GList *
 empathy_theme_manager_get_adium_themes (void)
 {
 #ifdef HAVE_WEBKIT
-       GList *themes = NULL;
+       GList *themes_list = NULL;
        gchar *userpath = NULL;
        const gchar *const *paths = NULL;
        gint i = 0;
 
        userpath = g_build_path (G_DIR_SEPARATOR_S, g_get_user_data_dir (), "adium/message-styles", NULL);
-       find_themes (&themes, userpath);
+       find_themes (&themes_list, userpath);
        g_free (userpath);
 
        paths = g_get_system_data_dirs ();
        for (i = 0; paths[i] != NULL; i++) {
                userpath = g_build_path (G_DIR_SEPARATOR_S, paths[i],
                        "adium/message-styles", NULL);
-               find_themes (&themes, userpath);
+               find_themes (&themes_list, userpath);
                g_free (userpath);
        }
 
-       return themes;
+       return themes_list;
 #else
        return NULL;
 #endif /* HAVE_WEBKIT */