comparison mcabber/src/screen.c @ 148:c3624b2a7059

[/trunk] Changeset 160 by mikael * Add roster_msg_setflag() (which updates ROSTER_FLAG_MSG flag for buddy and his _group_.
author mikael
date Sat, 30 Apr 2005 22:45:00 +0000
parents 300bb88f631f
children 9f74832eb4f8
comparison
equal deleted inserted replaced
147:7571de4aed73 148:c3624b2a7059
288 288
289 if (win_entry != NULL) { 289 if (win_entry != NULL) {
290 top_panel(win_entry->panel); 290 top_panel(win_entry->panel);
291 currentWindow = win_entry; 291 currentWindow = win_entry;
292 chatmode = TRUE; 292 chatmode = TRUE;
293 roster_setflags(winId, ROSTER_FLAG_MSG, FALSE); 293 roster_msg_setflag(winId, FALSE);
294 roster_setflags(winId, ROSTER_FLAG_LOCK, TRUE); 294 roster_setflags(winId, ROSTER_FLAG_LOCK, TRUE);
295 update_roster = TRUE; 295 update_roster = TRUE;
296 296
297 // Refresh the window 297 // Refresh the window
298 scr_UpdateWindow(win_entry); 298 scr_UpdateWindow(win_entry);
384 scr_UpdateWindow(win_entry); 384 scr_UpdateWindow(win_entry);
385 top_panel(inputPanel); 385 top_panel(inputPanel);
386 update_panels(); 386 update_panels();
387 doupdate(); 387 doupdate();
388 } else { 388 } else {
389 roster_setflags(winId, ROSTER_FLAG_MSG, TRUE); 389 roster_msg_setflag(winId, TRUE);
390 update_roster = TRUE; 390 update_roster = TRUE;
391 } 391 }
392 } 392 }
393 393
394 void scr_InitCurses(void) 394 void scr_InitCurses(void)