| 13851:27bc39ea07f8 | 13852:1d3ae9f34d42 |
|---|---|
| 1 #include "gntui.h" | |
| 2 | |
| 3 void init_gnt_ui() | |
| 4 { | |
| 5 gnt_init(); | |
| 6 | |
| 7 wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); | |
| 8 werase(stdscr); | |
| 9 /*box(stdscr, ACS_VLINE, ACS_HLINE);*/ | |
| 10 wrefresh(stdscr); | |
| 11 | |
| 12 /* Initialize the buddy list */ | |
| 13 gg_blist_init(); | |
| 14 gaim_blist_set_ui_ops(gg_get_blist_ui_ops()); | |
| 15 | |
| 16 gnt_main(); | |
| 17 } | |
| 18 |