changeset 32544:ef8d9e44cc73

get_theme_files --> get_variant_files.
author tdrhq@soc.pidgin.im
date Mon, 10 Aug 2009 07:49:37 +0000
parents 25d99f3621bb
children d60517f63f99
files pidgin/plugins/adiumthemes/webkit.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/plugins/adiumthemes/webkit.c	Mon Aug 10 07:47:37 2009 +0000
+++ b/pidgin/plugins/adiumthemes/webkit.c	Mon Aug 10 07:49:37 2009 +0000
@@ -591,7 +591,7 @@
  * Get each of the files corresponding to each variant.
  */
 static GList*
-get_theme_files(PidginMessageStyle *style) 
+get_variant_files(PidginMessageStyle *style) 
 {
 	GList *ret = NULL;
         GDir *variants;
@@ -637,7 +637,7 @@
 		css_path = NULL;
 	}
 	
-	all = get_theme_files (style);
+	all = get_variant_files (style);
 
 	if (all) {
 		style->css_path = g_strdup (all->data);
@@ -789,7 +789,7 @@
 get_config_frame(PurplePlugin *plugin) 
 {
 	PidginMessageStyle *style = pidgin_message_style_load (cur_style_dir);
-	GList *variants = get_theme_files(style);
+	GList *variants = get_variant_files(style);
 	GList *iter = variants;
 	char *curdir = NULL;
 	GtkWidget *combobox = gtk_combo_box_new_text();