comparison plugins/notify.c @ 6735:b0913ab92893

[gaim-migrate @ 7267] This is some compile warning cleanup stuff. I tried compiling with CFLAGS="-ansi -ggdb -pedantic -Wall" It's fun. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 04 Sep 2003 03:50:22 +0000
parents 7230e5920911
children 996a182029f7
comparison
equal deleted inserted replaced
6734:bf77a7db61c2 6735:b0913ab92893
644 quote_add(gtkwin->window); 644 quote_add(gtkwin->window);
645 if (notify_opts & OPT_METHOD_URGENT) 645 if (notify_opts & OPT_METHOD_URGENT)
646 urgent_add(c); 646 urgent_add(c);
647 } 647 }
648 } else { 648 } else {
649 //don't simply call unnotify(), because that will kill the msg counter 649 /* don't simply call unnotify(), because that will kill the msg counter */
650 urgent_remove(c); 650 urgent_remove(c);
651 quote_remove(gtkwin->window); 651 quote_remove(gtkwin->window);
652 count_remove(gtkwin->window); 652 count_remove(gtkwin->window);
653 string_remove(gtkwin->window); 653 string_remove(gtkwin->window);
654 } 654 }
655 } else if (opts & STATE_IS_NOTIFIED) { 655 } else if (opts & STATE_IS_NOTIFIED) {
656 //add/remove the status that was changed 656 /* add/remove the status that was changed */
657 switch(opt_chng) { 657 switch(opt_chng) {
658 case OPT_METHOD_COUNT: 658 case OPT_METHOD_COUNT:
659 if (notify_opts & OPT_METHOD_COUNT) 659 if (notify_opts & OPT_METHOD_COUNT)
660 count_add(gtkwin->window); 660 count_add(gtkwin->window);
661 else 661 else