comparison src/aim.c @ 4263:74f65a3d2a1f

[gaim-migrate @ 4514] I wanted to get this into cvs before I went to bed. Now proto-specific themes will work. The code's a bit crude at parts and it's not as fast as I'd like, but I can work some more on it tomorrow. Just figured you'd want to get a look at this. 8 penguin points to whoever finds out why gtk_smiley_tree_destroy (commented out right now, causing leakage) segfaults on me now. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 09 Jan 2003 09:41:49 +0000
parents ebfb80bbe1ed
children a723d060620a
comparison
equal deleted inserted replaced
4262:7103653dd34e 4263:74f65a3d2a1f
488 int UI_fd; 488 int UI_fd;
489 char name[256]; 489 char name[256];
490 GList *icons = NULL; 490 GList *icons = NULL;
491 GdkPixbuf *icon = NULL; 491 GdkPixbuf *icon = NULL;
492 492
493 smiley_theme_probe();
494
493 /* use the nice PNG icon for all the windows */ 495 /* use the nice PNG icon for all the windows */
494 icon = gdk_pixbuf_new_from_file(DATADIR G_DIR_SEPARATOR_S "pixmaps" G_DIR_SEPARATOR_S "gaim.png",NULL); 496 icon = gdk_pixbuf_new_from_file(DATADIR G_DIR_SEPARATOR_S "pixmaps" G_DIR_SEPARATOR_S "gaim.png",NULL);
495 if (icon) { 497 if (icon) {
496 icons = g_list_append(icons,icon); 498 icons = g_list_append(icons,icon);
497 gtk_window_set_default_icon_list(icons); 499 gtk_window_set_default_icon_list(icons);
807 } 809 }
808 810
809 #if GAIM_PLUGINS || USE_PERL 811 #if GAIM_PLUGINS || USE_PERL
810 gaim_probe_plugins(); 812 gaim_probe_plugins();
811 #endif 813 #endif
812 814
813 #ifdef _WIN32 815 #ifdef _WIN32
814 /* Various win32 initializations */ 816 /* Various win32 initializations */
815 wgaim_init(); 817 wgaim_init();
816 #endif 818 #endif
817 819