changeset 16448:ae8579182400

Update window icons to point to new path
author Sean Egan <seanegan@gmail.com>
date Thu, 26 Apr 2007 19:00:29 +0000
parents d11491f579fd
children 02782d054199
files pidgin/gtkmain.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkmain.c	Thu Apr 26 17:40:11 2007 +0000
+++ b/pidgin/gtkmain.c	Thu Apr 26 19:00:29 2007 +0000
@@ -241,10 +241,10 @@
 	char *icon_path;
 	int i;
 	const char *icon_sizes[] = {
-		"16",
-		"24",
-		"32",
-		"48"
+		"16x16",
+		"24x24",
+		"32x32",
+		"48x48"
 	};
 
 #endif
@@ -256,7 +256,7 @@
 #ifndef _WIN32
 	/* use the nice PNG icon for all the windows */
 	for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) {
-		icon_path = g_build_filename(DATADIR, "pixmaps", "pidgin", "icons", icon_sizes[i], "pidgin.png", NULL);
+		icon_path = g_build_filename(DATADIR, "pixmaps", "icons", "hicolor", icon_sizes[i], "apps", "pidgin.png", NULL);
 		icon = gdk_pixbuf_new_from_file(icon_path, NULL);
 		g_free(icon_path);
 		if (icon) {