comparison src/gaimrc.c @ 82:05077cb276d4

[gaim-migrate @ 92] Made it very easy to switch between penguin and devil icons in the applet. Also made it so that it would find the icons better (through use of nifty GNOME functions I accidentally found). Other little touch-ups here and there. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 05 Apr 2000 08:22:38 +0000
parents e3e7351cf70d
children 51943f1a97a0
comparison
equal deleted inserted replaced
81:7a24bb75a97b 82:05077cb276d4
29 #include <stdio.h> 29 #include <stdio.h>
30 #include <stdlib.h> 30 #include <stdlib.h>
31 #include <gtk/gtk.h> 31 #include <gtk/gtk.h>
32 #include "gaim.h" 32 #include "gaim.h"
33 #include "proxy.h" 33 #include "proxy.h"
34
35 #if USE_APPLET
36 #include "gnome_applet_mgr.h"
37 #endif
34 38
35 39
36 struct aim_user *current_user = NULL; 40 struct aim_user *current_user = NULL;
37 GList *aim_users = NULL; 41 GList *aim_users = NULL;
38 int general_options; 42 int general_options;
413 blist_pos.y = atoi(p->value[1]); 417 blist_pos.y = atoi(p->value[1]);
414 blist_pos.width = atoi(p->value[2]); 418 blist_pos.width = atoi(p->value[2]);
415 blist_pos.height = atoi(p->value[3]); 419 blist_pos.height = atoi(p->value[3]);
416 blist_pos.xoff = atoi(p->value[4]); 420 blist_pos.xoff = atoi(p->value[4]);
417 blist_pos.yoff = atoi(p->value[5]); 421 blist_pos.yoff = atoi(p->value[5]);
418 } 422 }
419 423
420 } 424 }
421 425
422 } 426 }
423 427