Changeset c453ada for util.c


Ignore:
Timestamp:
May 31, 2008, 11:40:29 PM (16 years ago)
Author:
Geoffrey Thomas <geofft@mit.edu>
Branches:
barnowl_perlaim
Children:
7a1c90d
Parents:
b1fd36e
Message:
Remove aim.c. buddylist.c, buddy.c, libfaim, and everything that uses them.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • util.c

    ree310eb rc453ada  
    7878  }
    7979
    80   if (owl_global_is_zaway(&g) || owl_global_is_aaway(&g)) {
     80  /* TODO add perl hooks for sepbar away, etc. status */
     81  if (owl_global_is_zaway(&g)) {
    8182    getyx(sepwin, y, x);
    8283    wmove(sepwin, y, x+2);
    8384    wattron(sepwin, A_BOLD);
    8485    wattroff(sepwin, A_REVERSE);
    85     if (owl_global_is_zaway(&g) && owl_global_is_aaway(&g)) {
     86    if (owl_global_is_zaway(&g)) {
    8687      waddstr(sepwin, " AWAY ");
    87     } else if (owl_global_is_zaway(&g)) {
    88       waddstr(sepwin, " Z-AWAY ");
    89     } else if (owl_global_is_aaway(&g)) {
    90       waddstr(sepwin, " A-AWAY ");
    91     }
     88    } /* else if... */
    9289    wattron(sepwin, A_REVERSE);
    9390    wattroff(sepwin, A_BOLD);
Note: See TracChangeset for help on using the changeset viewer.