# HG changeset patch # User tdrhq@soc.pidgin.im # Date 1249890577 0 # Node ID ef8d9e44cc734f5c26216bcc0a2c3e4b41d61031 # Parent 25d99f3621bb02137a0ca7732fcfb6b0372564ab get_theme_files --> get_variant_files. diff -r 25d99f3621bb -r ef8d9e44cc73 pidgin/plugins/adiumthemes/webkit.c --- 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();