comparison src/dialogs.c @ 9594:15d09e546cee

[gaim-migrate @ 10437] I changed the 2 preferences dealing with auto-responses. It's a drop down box. Check it out. I also made Gaim not load .gaimrc committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 25 Jul 2004 22:13:03 +0000
parents a88c8ca91518
children bc2079a32fd9
comparison
equal deleted inserted replaced
9593:a64febebdd1e 9594:15d09e546cee
586 static void away_mess_destroy_ca(GtkWidget *widget, GdkEvent *event, struct create_away *ca) 586 static void away_mess_destroy_ca(GtkWidget *widget, GdkEvent *event, struct create_away *ca)
587 { 587 {
588 away_mess_destroy(NULL, ca); 588 away_mess_destroy(NULL, ca);
589 } 589 }
590 590
591 static gint sort_awaymsg_list(gconstpointer a, gconstpointer b)
592 {
593 struct away_message *msg_a;
594 struct away_message *msg_b;
595
596 msg_a = (struct away_message *)a;
597 msg_b = (struct away_message *)b;
598
599 return (strcmp(msg_a->name, msg_b->name));
600 }
601
591 static struct away_message *save_away_message(struct create_away *ca) 602 static struct away_message *save_away_message(struct create_away *ca)
592 { 603 {
593 struct away_message *am; 604 struct away_message *am;
594 gchar *away_message; 605 gchar *away_message;
595 606