# HG changeset patch # User Elliott Sales de Andrade # Date 1244686904 0 # Node ID d679d47c82be331cd219d9685d88c1b9a40665d2 # Parent 65a79c501f5832c50581cb8e0da821259a4c2b68 Fix a copy&paste bug. diff -r 65a79c501f58 -r d679d47c82be pidgin/gtkicon-theme-loader.c --- a/pidgin/gtkicon-theme-loader.c Thu Jun 11 01:13:35 2009 +0000 +++ b/pidgin/gtkicon-theme-loader.c Thu Jun 11 02:21:44 2009 +0000 @@ -41,7 +41,7 @@ filename_full = g_build_filename(dir, "theme.xml", NULL); if (g_file_test(filename_full, G_FILE_TEST_IS_REGULAR)) - root_node = xmlnode_from_file(dir, "theme.xml", "sound themes", "sound-theme-loader"); + root_node = xmlnode_from_file(dir, "theme.xml", "icon themes", "icon-theme-loader"); g_free(filename_full); g_return_val_if_fail(root_node != NULL, NULL);