comparison src/conversation.c @ 5860:52d5fad43950

[gaim-migrate @ 6291] Fixed a couple of run-time type check warnings. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 06:38:30 +0000
parents 96e5b32e75ad
children 059d95c67cda
comparison
equal deleted inserted replaced
5859:022786c7ab53 5860:52d5fad43950
452 { 452 {
453 GaimWindow *win; 453 GaimWindow *win;
454 454
455 win = g_malloc0(sizeof(GaimWindow)); 455 win = g_malloc0(sizeof(GaimWindow));
456 456
457 windows = g_list_append(windows, win);
458
457 win->ui_ops = gaim_get_win_ui_ops(); 459 win->ui_ops = gaim_get_win_ui_ops();
458 460
459 if (win->ui_ops != NULL && win->ui_ops->new_window != NULL) 461 if (win->ui_ops != NULL && win->ui_ops->new_window != NULL)
460 win->ui_ops->new_window(win); 462 win->ui_ops->new_window(win);
461
462 windows = g_list_append(windows, win);
463 463
464 return win; 464 return win;
465 } 465 }
466 466
467 void 467 void