| 8023 win = g_malloc0(sizeof(PidginWindow)); |
8023 win = g_malloc0(sizeof(PidginWindow)); |
| 8024 |
8024 |
| 8025 window_list = g_list_append(window_list, win); |
8025 window_list = g_list_append(window_list, win); |
| 8026 |
8026 |
| 8027 /* Create the window. */ |
8027 /* Create the window. */ |
| 8028 win->window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
8028 win->window = pidgin_create_window(NULL, 0, "conversation", TRUE); |
| 8029 gtk_window_set_role(GTK_WINDOW(win->window), "conversation"); |
|
| 8030 gtk_window_set_resizable(GTK_WINDOW(win->window), TRUE); |
|
| 8031 gtk_container_set_border_width(GTK_CONTAINER(win->window), 0); |
|
| 8032 GTK_WINDOW(win->window)->allow_shrink = TRUE; |
8029 GTK_WINDOW(win->window)->allow_shrink = TRUE; |
| 8033 |
8030 |
| 8034 if (available_list == NULL) { |
8031 if (available_list == NULL) { |
| 8035 create_icon_lists(win->window); |
8032 create_icon_lists(win->window); |
| 8036 } |
8033 } |